Skip to content

Commit

Permalink
feat(types): add ISerialSignal
Browse files Browse the repository at this point in the history
  • Loading branch information
damienbutt committed Apr 21, 2022
1 parent 5202787 commit 31f7c1e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/types/ISerialSignal/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { ISerialEventAction } from "../ISerialEventAction";
import { ISerialState } from "../ISerialState";
import { IBaseSignal } from "../IBaseSignal";

export declare interface ISerialSignal
extends IBaseSignal<ISerialState, ISerialEventAction> {}
1 change: 1 addition & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export * from "./DigitalStateCallback";
export * from "./Serial";
export * from "./ISerialEventAction";
export * from "./ISerialState";
export * from "./ISerialSignal";
export * from "./SerialStateCallback";
export * from "./StateCallback";
export * from "./IStateSubscription";
Expand Down

0 comments on commit 31f7c1e

Please sign in to comment.