| 1 | export interface PluginConfig { |
| 2 | restoreActionType?: string |
| 3 | onBackup?: (state: any) => any |
| 4 | onRestore?: (restoringState: any, reduxState: any) => any |
| 5 | // eslint-disable-next-line @typescript-eslint/ban-types |
| 6 | except?: (string | Function | RegExp)[] |
| 7 | isActionImportant?: (action: any) => boolean |
| 8 | } |
nothing calls this directly
no outgoing calls
no test coverage detected