This repository has no description
0

Configure Feed

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

semble / src / webapp / features / notes / lib / noteKeys.ts
229 B 6 lines
1export const noteKeys = { 2 all: () => ['notes'] as const, 3 note: (id: string) => [...noteKeys.all(), id] as const, 4 bySembleUrl: (url: string) => [...noteKeys.all(), url], 5 infinite: () => [...noteKeys.all(), 'infinite'], 6};