Skip to content

Commit

Permalink
feat(types): add IDigitalState
Browse files Browse the repository at this point in the history
  • Loading branch information
damienbutt committed Apr 17, 2022
1 parent b52b495 commit 6cd896e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/types/IDigitalState/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { IBaseState } from "../IBaseState";
import { Digital } from "../Digital";

export declare interface IDigitalState extends IBaseState<Digital> {}
1 change: 1 addition & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export * from "./IAnalogState";
export * from "./AnalogStateCallback";
export * from "./Digital";
export * from "./IDigitalAction";
export * from "./IDigitalState";
export * from "./DigitalStateCallback";
export * from "./Serial";
export * from "./ISerialAction";
Expand Down

0 comments on commit 6cd896e

Please sign in to comment.