Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Garfonso committed May 24, 2024
1 parent ef08d4c commit 2b59a1f
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 5 deletions.
37 changes: 37 additions & 0 deletions build/lib/TableDevice.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions build/lib/TableDevice.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion build/lib/WebSocketDevice.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/lib/WebSocketDevice.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/lib/TableDevice.d.ts → src/lib/TableDevice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type TableDevice = {
pin: string;
pollInterval?: number;
enabled?: boolean;
[key: string]: string | number | boolean;
[key: string]: string | number | boolean | undefined;
}

/**
Expand All @@ -23,4 +23,4 @@ export function sanitizeTableDevice(tblDev: TableDevice) : void {
if (!tblDev.pin) {
tblDev.pin = 'INVALID';
}
}
}

0 comments on commit 2b59a1f

Please sign in to comment.