Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCalzone committed Dec 12, 2024
1 parent 3962a67 commit 2cc6e66
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/zwave-js/src/lib/zniffer/Zniffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,12 @@ export class Zniffer extends TypedEventTarget<ZnifferEventCallbacks> {
* The host bindings used to access file system etc.
*/
// This is set during `init()` and should not be accessed before
private bindings!: Required<NonNullable<ZWaveOptions["host"]>>;
private bindings!: Omit<
Required<
NonNullable<ZWaveOptions["host"]>
>,
"db"
>;

private serialFactory: ZnifferSerialStreamFactory | undefined;
/** The serial port instance */
Expand Down

0 comments on commit 2cc6e66

Please sign in to comment.