triage-types 1.0.12 → 1.0.13
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.
|
@@ -14,7 +14,7 @@ export declare class ARStatePermitSource {
|
|
|
14
14
|
readonly power_unit?: string;
|
|
15
15
|
readonly power_kw?: number;
|
|
16
16
|
readonly fuel?: string;
|
|
17
|
-
readonly is_emergency?:
|
|
17
|
+
readonly is_emergency?: string;
|
|
18
18
|
readonly [x: string]: any;
|
|
19
19
|
constructor(state_permit_source: ARStatePermitSource);
|
|
20
20
|
static is(state_permit_source: any): state_permit_source is ARStatePermitSource;
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ export class ARStatePermitSource {
|
|
|
15
15
|
readonly power_unit? : string
|
|
16
16
|
readonly power_kw? : number
|
|
17
17
|
readonly fuel? : string
|
|
18
|
-
readonly is_emergency? :
|
|
18
|
+
readonly is_emergency? : string
|
|
19
19
|
readonly [x : string] : any
|
|
20
20
|
|
|
21
21
|
constructor(state_permit_source : ARStatePermitSource) {
|