Here are my example types of properties that are stored in Redux. I can not blacklist a property (the name is blacklistProperty in that example) under a dynamically created key (UUID)
type EntitiesSlice = { entities: {[id: string]: EntityState} }; type EntityState = { id: string; persistProperty: string; blacklistProperty: string; };
Here are my example types of properties that are stored in Redux. I can not blacklist a property (the name is blacklistProperty in that example) under a dynamically created key (UUID)
type EntitiesSlice = { entities: {[id: string]: EntityState} };
type EntityState = { id: string; persistProperty: string; blacklistProperty: string; };