Skip to content

Commit

Permalink
feat(api): add IReset interface
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jan 23, 2020
1 parent 49c62b7 commit d491bd0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/api/src/api/reset.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* Interface for types supporting some form of internal state reset.
*/
export interface IReset {
reset(): this;
}
1 change: 1 addition & 0 deletions packages/api/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export * from "./api/object";
export * from "./api/predicate";
export * from "./api/range";
export * from "./api/release";
export * from "./api/reset";
export * from "./api/select";
export * from "./api/seq";
export * from "./api/set";
Expand Down

0 comments on commit d491bd0

Please sign in to comment.