crewtimer-common 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -53,6 +53,9 @@ export interface StopwatchConfig {
|
|
|
53
53
|
stopwatchTime: string;
|
|
54
54
|
useStopwatchTimes: boolean;
|
|
55
55
|
}
|
|
56
|
+
export interface TrackingStation {
|
|
57
|
+
name: string;
|
|
58
|
+
}
|
|
56
59
|
/** Public regatta settings */
|
|
57
60
|
export interface RegattaInfo {
|
|
58
61
|
ClearTS: number;
|
|
@@ -65,6 +68,7 @@ export interface RegattaInfo {
|
|
|
65
68
|
Finished?: boolean;
|
|
66
69
|
FlightRaces?: string[][];
|
|
67
70
|
InfoText?: string;
|
|
71
|
+
NtpServers?: string[];
|
|
68
72
|
NumDays: string;
|
|
69
73
|
PenaltyLocations?: string;
|
|
70
74
|
PointsEngine: string;
|
|
@@ -79,6 +83,7 @@ export interface RegattaInfo {
|
|
|
79
83
|
Stopwatch?: StopwatchConfig;
|
|
80
84
|
Title: string;
|
|
81
85
|
Titles?: KeyMap<string>;
|
|
86
|
+
TrackingStations?: TrackingStation[];
|
|
82
87
|
Waypoints: string;
|
|
83
88
|
}
|
|
84
89
|
/** Private regatta settings
|
|
@@ -53,6 +53,9 @@ export interface StopwatchConfig {
|
|
|
53
53
|
stopwatchTime: string;
|
|
54
54
|
useStopwatchTimes: boolean;
|
|
55
55
|
}
|
|
56
|
+
export interface TrackingStation {
|
|
57
|
+
name: string;
|
|
58
|
+
}
|
|
56
59
|
/** Public regatta settings */
|
|
57
60
|
export interface RegattaInfo {
|
|
58
61
|
ClearTS: number;
|
|
@@ -65,6 +68,7 @@ export interface RegattaInfo {
|
|
|
65
68
|
Finished?: boolean;
|
|
66
69
|
FlightRaces?: string[][];
|
|
67
70
|
InfoText?: string;
|
|
71
|
+
NtpServers?: string[];
|
|
68
72
|
NumDays: string;
|
|
69
73
|
PenaltyLocations?: string;
|
|
70
74
|
PointsEngine: string;
|
|
@@ -79,6 +83,7 @@ export interface RegattaInfo {
|
|
|
79
83
|
Stopwatch?: StopwatchConfig;
|
|
80
84
|
Title: string;
|
|
81
85
|
Titles?: KeyMap<string>;
|
|
86
|
+
TrackingStations?: TrackingStation[];
|
|
82
87
|
Waypoints: string;
|
|
83
88
|
}
|
|
84
89
|
/** Private regatta settings
|