Skip to content

Commit

Permalink
tidy: update build artefact index.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed May 5, 2023
1 parent 5822ce6 commit 53814a7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ type Options = {
persistDebounce?: number;
persistWholeStore: boolean;
};
type ExtendedOptions = Options & {
driver: Driver;
};
declare const rememberReducer: <S = any, A extends Action<any> = AnyAction>(reducer: Reducer<S, A> | ReducersMapObject<S, A>) => Reducer<S, A>;
declare const rememberEnhancer: (driver: Driver, rememberedKeys: string[], { prefix, serialize, unserialize, persistThrottle, persistDebounce, persistWholeStore }?: Partial<Options>) => any;
export { rememberReducer, rememberEnhancer, REMEMBER_REHYDRATED, REMEMBER_PERSISTED };
export { SerializeFunction, UnserializeFunction, Driver, Options, ExtendedOptions, rememberReducer, rememberEnhancer, REMEMBER_REHYDRATED, REMEMBER_PERSISTED };

0 comments on commit 53814a7

Please sign in to comment.