Skip to content

Instantly share code, notes, and snippets.

@lafiosca
lafiosca / persistMigration.ts
Last active June 16, 2025 19:14
redux-persist migrations in TypeScript with a little help from patch-package
import { createMigrate } from 'redux-persist';
import { RootState } from './modules/reducer';
/*
* Latest version (V3) is simply the currently used redux RootState.
*/
type PersistedRootStateV3 = RootState;
/*