@dmdata/telegram-json-types 1.0.8 → 1.0.9-jschema.3
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.
- package/LICENSE +21 -0
- package/README.md +60 -0
- package/dist/build.d.ts +1 -0
- package/dist/build.js +68 -0
- package/dist/config.d.ts +3 -0
- package/dist/config.js +7 -0
- package/dist/jschema/earthquake-counts_1.0.0.json +1 -0
- package/dist/jschema/earthquake-explanation_1.0.0.json +1 -0
- package/dist/jschema/earthquake-hypocenter-update_1.0.0.json +1 -0
- package/dist/jschema/earthquake-information_1.0.0.json +1 -0
- package/dist/jschema/earthquake-information_1.1.0.json +1 -0
- package/dist/jschema/earthquake-nankai_1.0.0.json +1 -0
- package/dist/jschema/eew-information_1.0.0.json +1 -0
- package/dist/jschema/tsunami-information_1.0.0.json +1 -0
- package/dist/jschema/volcano-information_1.0.0.json +1 -0
- package/dist/jschema/weather-typhoon_1.0.0.json +1 -0
- package/dist/jschema-load.d.ts +1 -0
- package/dist/jschema-load.js +44 -0
- package/index.d.ts +2 -1
- package/package.json +21 -11
- package/tsconfig.json +27 -15
- package/types/{schema/component → component}/coordinate.d.ts +15 -15
- package/types/{schema/component → component}/earthquake.d.ts +56 -56
- package/types/{schema/component → component}/unit-value.d.ts +13 -13
- package/types/index.d.ts +21 -3
- package/types/schema/earthquake-counts/1.0.0.d.ts +69 -0
- package/types/schema/earthquake-counts/index.d.ts +7 -0
- package/types/schema/earthquake-explanation/1.0.0.d.ts +57 -0
- package/types/schema/earthquake-explanation/index.d.ts +7 -0
- package/types/schema/earthquake-hypocenter-update/1.0.0.d.ts +53 -0
- package/types/schema/earthquake-hypocenter-update/index.d.ts +7 -0
- package/types/schema/earthquake-information/1.0.0.d.ts +165 -0
- package/types/schema/{earthquake-information.d.ts → earthquake-information/1.1.0.d.ts} +212 -177
- package/types/schema/earthquake-information/index.d.ts +9 -0
- package/types/schema/earthquake-nankai/1.0.0.d.ts +87 -0
- package/types/schema/earthquake-nankai/index.d.ts +7 -0
- package/types/schema/eew-information/1.0.0.d.ts +176 -0
- package/types/schema/eew-information/index.d.ts +7 -0
- package/types/schema/{tsunami-information.d.ts → tsunami-information/1.0.0.d.ts} +243 -229
- package/types/schema/tsunami-information/index.d.ts +7 -0
- package/types/schema/volcano-information/1.0.0.d.ts +449 -0
- package/types/schema/volcano-information/index.d.ts +7 -0
- package/types/schema/{weather-typhoon.d.ts → weather-typhoon/1.0.0.d.ts} +124 -117
- package/types/schema/weather-typhoon/index.d.ts +7 -0
|
@@ -1,229 +1,243 @@
|
|
|
1
|
-
import { Earthquake } from '
|
|
2
|
-
import { TelegramJSONMain } from '
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
export namespace TsunamiInformation {
|
|
6
|
-
export interface Schema {
|
|
7
|
-
type: 'tsunami-information';
|
|
8
|
-
version: '1.0.0';
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
export interface TsunamiForecastKind {
|
|
12
|
-
code: string;
|
|
13
|
-
name: string;
|
|
14
|
-
lastKind: {
|
|
15
|
-
code: string;
|
|
16
|
-
name: string;
|
|
17
|
-
};
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export interface TsunamiForecastFirstHeight {
|
|
21
|
-
arrivalTime?: string;
|
|
22
|
-
condition?: '津波到達中と推測' | '第1波の到達を確認' | 'ただちに津波来襲と予測';
|
|
23
|
-
revise?: '追加' | '更新';
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export interface TsunamiForecastMaxHeightValue {
|
|
27
|
-
type: '津波の高さ';
|
|
28
|
-
unit: 'm';
|
|
29
|
-
value: string | null;
|
|
30
|
-
over?: true;
|
|
31
|
-
condition?: '巨大' | '高い';
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export interface TsunamiForecastMaxHeight {
|
|
35
|
-
height: TsunamiForecastMaxHeightValue;
|
|
36
|
-
condition?: '重要';
|
|
37
|
-
revise?: '追加' | '更新';
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
export interface TsunamiForecastStation {
|
|
41
|
-
code: string;
|
|
42
|
-
name: string;
|
|
43
|
-
highTideDateTime: string;
|
|
44
|
-
firstHeight: TsunamiForecastFirstHeight;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
export interface TsunamiForecast {
|
|
48
|
-
code: string;
|
|
49
|
-
name: string;
|
|
50
|
-
kind: TsunamiForecastKind;
|
|
51
|
-
firstHeight: TsunamiForecastFirstHeight;
|
|
52
|
-
maxHeight: TsunamiForecastMaxHeight;
|
|
53
|
-
stations?: TsunamiForecastStation[] | never;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
export interface TsunamiForecastVXSE41 extends TsunamiForecast {
|
|
57
|
-
stations: never;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export interface TsunamiForecastVXSE51 extends TsunamiForecast {
|
|
61
|
-
stations?: TsunamiForecastStation[];
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export interface TsunamiObservationStationFirstHeight {
|
|
65
|
-
arrivalTime: string;
|
|
66
|
-
initial?: '押し' | '引き';
|
|
67
|
-
condition?: '第1波識別不能';
|
|
68
|
-
revise?: '追加' | '更新';
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
export interface TsunamiObservationStationMaxHeightValue {
|
|
72
|
-
type: 'これまでの最大波の高さ';
|
|
73
|
-
unit: 'm';
|
|
74
|
-
value: string | null;
|
|
75
|
-
over?: true;
|
|
76
|
-
condition?: '上昇中';
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
export interface TsunamiObservationStationMaxHeight {
|
|
80
|
-
dateTime?: string;
|
|
81
|
-
height?: TsunamiObservationStationMaxHeightValue;
|
|
82
|
-
condition?: '微弱' | '観測中' | '重要';
|
|
83
|
-
revise?: '追加' | '更新';
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export interface TsunamiObservationStation {
|
|
87
|
-
code: string;
|
|
88
|
-
name: string;
|
|
89
|
-
sensor?: string;
|
|
90
|
-
firstHeight: TsunamiObservationStationFirstHeight;
|
|
91
|
-
maxHeight: TsunamiObservationStationMaxHeight;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
export interface TsunamiObservation {
|
|
95
|
-
code: string | null;
|
|
96
|
-
name: string | null;
|
|
97
|
-
stations: TsunamiObservationStation[];
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
export interface TsunamiObservationVXSE51 extends TsunamiObservation {
|
|
101
|
-
code: string;
|
|
102
|
-
name: string;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
export interface TsunamiObservationVXSE52 extends TsunamiObservation {
|
|
106
|
-
code: null;
|
|
107
|
-
name: null;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
export interface TsunamiEstimationFirstHeight {
|
|
111
|
-
arrivalTime: string;
|
|
112
|
-
condition?: '早いところでは既に津波到達と推定';
|
|
113
|
-
revise?: '追加' | '更新';
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
export interface TsunamiEstimationMaxHeightValue {
|
|
117
|
-
type: '津波の高さ';
|
|
118
|
-
unit: 'm';
|
|
119
|
-
value: string | null;
|
|
120
|
-
over?: true;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
export interface TsunamiEstimationMaxHeight {
|
|
124
|
-
dateTime?: string;
|
|
125
|
-
height?: TsunamiEstimationMaxHeightValue;
|
|
126
|
-
condition?: '微弱' | '観測中' | '重要';
|
|
127
|
-
revise?: '追加' | '更新';
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
export interface TsunamiEstimation {
|
|
131
|
-
code: string;
|
|
132
|
-
name: string;
|
|
133
|
-
firstHeight: TsunamiEstimationFirstHeight;
|
|
134
|
-
maxHeight: TsunamiEstimationMaxHeight;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
export interface PublicBodyVTSE41Tsunami {
|
|
138
|
-
forecasts: TsunamiForecastVXSE41[];
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
export interface PublicBodyVTSE51Tsunami {
|
|
142
|
-
forecasts: TsunamiForecastVXSE51[];
|
|
143
|
-
observations: TsunamiObservationVXSE51[];
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
export interface PublicBodyVTSE52Tsunami {
|
|
147
|
-
observations: TsunamiObservationVXSE52[];
|
|
148
|
-
estimations: TsunamiEstimation[];
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
export type Comment = {
|
|
152
|
-
free?: string;
|
|
153
|
-
warning?: {
|
|
154
|
-
text: string;
|
|
155
|
-
codes: string[];
|
|
156
|
-
};
|
|
157
|
-
};
|
|
158
|
-
|
|
159
|
-
export interface
|
|
160
|
-
text: string;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
export interface PublicBodyVTSE41 {
|
|
164
|
-
tsunami: PublicBodyVTSE41Tsunami;
|
|
165
|
-
earthquakes: Earthquake[];
|
|
166
|
-
text?: string;
|
|
167
|
-
comments?: Comment;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
export interface PublicBodyVTSE51 {
|
|
171
|
-
tsunami: PublicBodyVTSE51Tsunami;
|
|
172
|
-
earthquakes: Earthquake[];
|
|
173
|
-
text?: string;
|
|
174
|
-
comments?: Comment;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
export interface PublicBodyVTSE52 {
|
|
178
|
-
tsunami: PublicBodyVTSE52Tsunami;
|
|
179
|
-
earthquakes: Earthquake[];
|
|
180
|
-
text?: string;
|
|
181
|
-
comments?: Comment;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
export interface PublicVTSE41 extends TelegramJSONMain {
|
|
186
|
-
_schema: Schema;
|
|
187
|
-
type: '
|
|
188
|
-
title: string;
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
infoType: '発表' | '訂正';
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
1
|
+
import { Earthquake } from '@t/component/earthquake';
|
|
2
|
+
import { TelegramJSONMain } from '@t/main';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export namespace TsunamiInformation {
|
|
6
|
+
export interface Schema {
|
|
7
|
+
type: 'tsunami-information';
|
|
8
|
+
version: '1.0.0';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
export interface TsunamiForecastKind {
|
|
12
|
+
code: string;
|
|
13
|
+
name: string;
|
|
14
|
+
lastKind: {
|
|
15
|
+
code: string;
|
|
16
|
+
name: string;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface TsunamiForecastFirstHeight {
|
|
21
|
+
arrivalTime?: string;
|
|
22
|
+
condition?: '津波到達中と推測' | '第1波の到達を確認' | 'ただちに津波来襲と予測';
|
|
23
|
+
revise?: '追加' | '更新';
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface TsunamiForecastMaxHeightValue {
|
|
27
|
+
type: '津波の高さ';
|
|
28
|
+
unit: 'm';
|
|
29
|
+
value: string | null;
|
|
30
|
+
over?: true;
|
|
31
|
+
condition?: '巨大' | '高い';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface TsunamiForecastMaxHeight {
|
|
35
|
+
height: TsunamiForecastMaxHeightValue;
|
|
36
|
+
condition?: '重要';
|
|
37
|
+
revise?: '追加' | '更新';
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export interface TsunamiForecastStation {
|
|
41
|
+
code: string;
|
|
42
|
+
name: string;
|
|
43
|
+
highTideDateTime: string;
|
|
44
|
+
firstHeight: TsunamiForecastFirstHeight;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export interface TsunamiForecast {
|
|
48
|
+
code: string;
|
|
49
|
+
name: string;
|
|
50
|
+
kind: TsunamiForecastKind;
|
|
51
|
+
firstHeight: TsunamiForecastFirstHeight;
|
|
52
|
+
maxHeight: TsunamiForecastMaxHeight;
|
|
53
|
+
stations?: TsunamiForecastStation[] | never;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export interface TsunamiForecastVXSE41 extends TsunamiForecast {
|
|
57
|
+
stations: never;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export interface TsunamiForecastVXSE51 extends TsunamiForecast {
|
|
61
|
+
stations?: TsunamiForecastStation[];
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export interface TsunamiObservationStationFirstHeight {
|
|
65
|
+
arrivalTime: string;
|
|
66
|
+
initial?: '押し' | '引き';
|
|
67
|
+
condition?: '第1波識別不能';
|
|
68
|
+
revise?: '追加' | '更新';
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export interface TsunamiObservationStationMaxHeightValue {
|
|
72
|
+
type: 'これまでの最大波の高さ';
|
|
73
|
+
unit: 'm';
|
|
74
|
+
value: string | null;
|
|
75
|
+
over?: true;
|
|
76
|
+
condition?: '上昇中';
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
export interface TsunamiObservationStationMaxHeight {
|
|
80
|
+
dateTime?: string;
|
|
81
|
+
height?: TsunamiObservationStationMaxHeightValue;
|
|
82
|
+
condition?: '微弱' | '観測中' | '重要';
|
|
83
|
+
revise?: '追加' | '更新';
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export interface TsunamiObservationStation {
|
|
87
|
+
code: string;
|
|
88
|
+
name: string;
|
|
89
|
+
sensor?: string;
|
|
90
|
+
firstHeight: TsunamiObservationStationFirstHeight;
|
|
91
|
+
maxHeight: TsunamiObservationStationMaxHeight;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
export interface TsunamiObservation {
|
|
95
|
+
code: string | null;
|
|
96
|
+
name: string | null;
|
|
97
|
+
stations: TsunamiObservationStation[];
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export interface TsunamiObservationVXSE51 extends TsunamiObservation {
|
|
101
|
+
code: string;
|
|
102
|
+
name: string;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export interface TsunamiObservationVXSE52 extends TsunamiObservation {
|
|
106
|
+
code: null;
|
|
107
|
+
name: null;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
export interface TsunamiEstimationFirstHeight {
|
|
111
|
+
arrivalTime: string;
|
|
112
|
+
condition?: '早いところでは既に津波到達と推定';
|
|
113
|
+
revise?: '追加' | '更新';
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
export interface TsunamiEstimationMaxHeightValue {
|
|
117
|
+
type: '津波の高さ';
|
|
118
|
+
unit: 'm';
|
|
119
|
+
value: string | null;
|
|
120
|
+
over?: true;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
export interface TsunamiEstimationMaxHeight {
|
|
124
|
+
dateTime?: string;
|
|
125
|
+
height?: TsunamiEstimationMaxHeightValue;
|
|
126
|
+
condition?: '微弱' | '観測中' | '重要';
|
|
127
|
+
revise?: '追加' | '更新';
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
export interface TsunamiEstimation {
|
|
131
|
+
code: string;
|
|
132
|
+
name: string;
|
|
133
|
+
firstHeight: TsunamiEstimationFirstHeight;
|
|
134
|
+
maxHeight: TsunamiEstimationMaxHeight;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
export interface PublicBodyVTSE41Tsunami {
|
|
138
|
+
forecasts: TsunamiForecastVXSE41[];
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
export interface PublicBodyVTSE51Tsunami {
|
|
142
|
+
forecasts: TsunamiForecastVXSE51[];
|
|
143
|
+
observations: TsunamiObservationVXSE51[];
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export interface PublicBodyVTSE52Tsunami {
|
|
147
|
+
observations: TsunamiObservationVXSE52[];
|
|
148
|
+
estimations: TsunamiEstimation[];
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
export type Comment = {
|
|
152
|
+
free?: string;
|
|
153
|
+
warning?: {
|
|
154
|
+
text: string;
|
|
155
|
+
codes: string[];
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
export interface CancelBody {
|
|
160
|
+
text: string;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
export interface PublicBodyVTSE41 {
|
|
164
|
+
tsunami: PublicBodyVTSE41Tsunami;
|
|
165
|
+
earthquakes: Earthquake[];
|
|
166
|
+
text?: string;
|
|
167
|
+
comments?: Comment;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
export interface PublicBodyVTSE51 {
|
|
171
|
+
tsunami: PublicBodyVTSE51Tsunami;
|
|
172
|
+
earthquakes: Earthquake[];
|
|
173
|
+
text?: string;
|
|
174
|
+
comments?: Comment;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export interface PublicBodyVTSE52 {
|
|
178
|
+
tsunami: PublicBodyVTSE52Tsunami;
|
|
179
|
+
earthquakes: Earthquake[];
|
|
180
|
+
text?: string;
|
|
181
|
+
comments?: Comment;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
export interface PublicVTSE41 extends TelegramJSONMain {
|
|
186
|
+
_schema: Schema;
|
|
187
|
+
type: '津波警報・注意報・予報a';
|
|
188
|
+
title: string;
|
|
189
|
+
infoType: '発表' | '訂正';
|
|
190
|
+
targetDateTimeDubious: never;
|
|
191
|
+
targetDuration: never;
|
|
192
|
+
validDateTime?: string;
|
|
193
|
+
eventId: string;
|
|
194
|
+
serialNo: null;
|
|
195
|
+
infoKind: '津波警報・注意報・予報';
|
|
196
|
+
body: PublicBodyVTSE41;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
export interface PublicVTSE51 extends TelegramJSONMain {
|
|
200
|
+
_schema: Schema;
|
|
201
|
+
type: '津波情報a';
|
|
202
|
+
title: '各地の満潮時刻・津波到達予想時刻に関する情報' | '津波観測に関する情報';
|
|
203
|
+
infoType: '発表' | '訂正';
|
|
204
|
+
targetDateTimeDubious: never;
|
|
205
|
+
targetDuration: never;
|
|
206
|
+
validDateTime: never;
|
|
207
|
+
eventId: string;
|
|
208
|
+
serialNo: string;
|
|
209
|
+
infoKind:'津波情報';
|
|
210
|
+
body: PublicBodyVTSE51;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
export interface PublicVTSE52 extends TelegramJSONMain {
|
|
215
|
+
_schema: Schema;
|
|
216
|
+
type: '沖合の津波観測に関する情報';
|
|
217
|
+
title: '沖合の津波観測に関する情報';
|
|
218
|
+
infoType: '発表' | '訂正';
|
|
219
|
+
targetDateTimeDubious: never;
|
|
220
|
+
targetDuration: never;
|
|
221
|
+
validDateTime: never;
|
|
222
|
+
eventId: string;
|
|
223
|
+
serialNo: string;
|
|
224
|
+
infoKind: '津波情報';
|
|
225
|
+
body: PublicBodyVTSE52;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
export interface Cancel extends TelegramJSONMain {
|
|
231
|
+
type: '大津波警報・津波警報・津波予報a' | '津波情報a' | '各地の満潮時刻・津波到達予想時刻に関する情報' | '津波観測に関する情報';
|
|
232
|
+
infoType: '取消';
|
|
233
|
+
targetDateTimeDubious: never;
|
|
234
|
+
targetDuration: never;
|
|
235
|
+
validDateTime: never;
|
|
236
|
+
eventId: string;
|
|
237
|
+
infoKind: '津波警報・注意報・予報'| '津波情報';
|
|
238
|
+
body: CancelBody;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
export type Main = (PublicVTSE41 | PublicVTSE51 | PublicVTSE52) | Cancel;
|
|
242
|
+
|
|
243
|
+
}
|