Skip to content

Commit

Permalink
records
Browse files Browse the repository at this point in the history
  • Loading branch information
azahnen committed Jan 2, 2025
1 parent 1d593e4 commit 4d906ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libxtracfg/js/types/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 4d906ca

Please sign in to comment.