ngrx-store-localstorage
ngrx-store-localstorage copied to clipboard
Get different properties by store
In my store I have a key called sidebar:
sidebar: {list: {pages: 0, size: 3, folders: [{id: 1, name: 'test'}] } , role: 'ADMIN' }
I want to get the key page and size by the feature_key 'list' but also the string of the property role, but it seems I can't. I tried in this way:
keys: [ { sidebar: [ { list: ['pages', 'size'], }, 'role' ], }, ],
I have an error: Type 'string' is not assignable to type 'KeyConfiguration'