mirror of
https://github.com/supabase/supabase.git
synced 2026-07-06 21:44:22 +08:00
7 lines
345 B
TypeScript
7 lines
345 B
TypeScript
export const databaseKeys = {
|
|
schemaList: (projectRef: string | undefined) => ['projects', projectRef, 'schemas'] as const,
|
|
backups: (projectRef: string | undefined) => [projectRef, 'database', 'backups'] as const,
|
|
poolingConfiguration: (projectRef: string | undefined) =>
|
|
[projectRef, 'database', 'pooling-configuration'] as const,
|
|
}
|