This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / webapp / features / collections / lib / collectionKeys.ts
411 B 8 lines
1export const collectionKeys = { 2 all: () => ['collections'] as const, 3 collection: (id: string) => [...collectionKeys.all(), id] as const, 4 mine: () => [...collectionKeys.all(), 'mine'] as const, 5 search: (query: string) => [...collectionKeys.all(), 'search', query], 6 bySembleUrl: (url: string) => [...collectionKeys.all(), url], 7 infinite: (id?: string) => [...collectionKeys.all(), 'infinite', id], 8};