diff --git a/src/index.d.ts b/src/index.d.ts index 730c0fe..8b1f6f5 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -7,8 +7,6 @@ interface SpyCreator { reset: (spy: S) => any } -type DefaultSpyCreator = SpyCreator - interface StoreConstructorOptions { getters?: G state?: S @@ -30,10 +28,3 @@ export class Store { reset(): void private _initialize(): void } - -// interface StoreInstance { -// } - -// export interface Store { -// new (options: StoreConstructorOptions): StoreInstance -// }