Skip to content

Instantly share code, notes, and snippets.

View shahul01's full-sized avatar

shahul01 shahul01

View GitHub Profile
const initialState = {
count: 1, name: 'hi',
};
const reducerStoreDict = {
setCount: 'count', setName: 'name',
} as const;
type RDictKey = keyof typeof reducerStoreDict;
interface UpdateDataProps<K extends RDictKey> {