diff --git a/plugins/stronghold/guest-js/dist/index.d.ts b/plugins/stronghold/guest-js/dist/index.d.ts index f7c279c9..4d96a57d 100644 --- a/plugins/stronghold/guest-js/dist/index.d.ts +++ b/plugins/stronghold/guest-js/dist/index.d.ts @@ -44,7 +44,7 @@ export interface NetworkConfig { permissionsDefault?: Permissions; } export interface Duration { - millis: number; + secs: number; nanos: number; } export declare class Location { diff --git a/plugins/stronghold/guest-js/index.ts b/plugins/stronghold/guest-js/index.ts index 09334ade..aa8e37d8 100644 --- a/plugins/stronghold/guest-js/index.ts +++ b/plugins/stronghold/guest-js/index.ts @@ -78,7 +78,7 @@ export interface NetworkConfig { } export interface Duration { - millis: number; + secs: number; nanos: number; }