This repository has no description
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};