UNPKG

260 BTypeScriptView Raw
1export interface PluginConfig {
2 restoreActionType?: string;
3 onBackup?: (state: any) => any;
4 onRestore?: (restoringState: any, reduxState: any) => any;
5 except?: (string | Function | RegExp)[];
6 isActionImportant?: (action: any) => boolean;
7}