mirror of
https://github.com/supabase/supabase.git
synced 2026-05-31 01:42:45 +08:00
6 lines
246 B
TypeScript
6 lines
246 B
TypeScript
export const branchKeys = {
|
|
list: (projectRef: string | undefined) => ['projects', projectRef, 'branches'] as const,
|
|
detail: (projectRef: string | undefined, id: string | undefined) =>
|
|
['projects', projectRef, 'branches', id] as const,
|
|
}
|