23 lines
761 B
TypeScript
23 lines
761 B
TypeScript
import { Store, MutationPayload } from 'vuex';
|
|
|
|
interface Storage {
|
|
getItem: (key: string) => any;
|
|
setItem: (key: string, value: any) => void;
|
|
removeItem: (key: string) => void;
|
|
}
|
|
|
|
interface Options {
|
|
key?: string;
|
|
paths?: string[];
|
|
reducer?: (state: any, paths: string[]) => object;
|
|
subscriber?: (store: typeof Store) => (handler: () => void) => void;
|
|
storage?: Storage;
|
|
getState?: (key: string, storage: Storage) => any;
|
|
setState?: (key: string, state: typeof Store, storage: Storage) => void;
|
|
filter?: (mutation: MutationPayload) => boolean;
|
|
arrayMerger?: (state: any, saved: any) => any;
|
|
rehydrated?: (store: typeof Store) => void;
|
|
}
|
|
|
|
export default function createPersistedState(options?: Options): any;
|