diff --git a/libxtracfg/js/types/src/index.ts b/libxtracfg/js/types/src/index.ts index 2de852f..157e12e 100644 --- a/libxtracfg/js/types/src/index.ts +++ b/libxtracfg/js/types/src/index.ts @@ -69,9 +69,9 @@ export namespace Command { //TODO: should be abstract so that it cannot be instantiated, but that breaks the JSON schema generation export class Base { readonly command: Enums.Main; - readonly options: Options.Options; + readonly options: Options.Base; - constructor(command: Enums.Main, options: Options.Options) { + constructor(command: Enums.Main, options: Options.Base) { this.command = command; this.options = options; }