drizzle-kit 0.27.2 → 0.28.0-bc6e8f5

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +0,0 @@
1
- declare const prefixes: readonly ["index", "timestamp", "supabase", "unix", "none"];
2
- type Prefix = (typeof prefixes)[number];
3
- declare const casingTypes: readonly ["snake_case", "camelCase"];
4
- type CasingType = (typeof casingTypes)[number];
5
- declare const drivers: readonly ["d1-http", "expo", "aws-data-api", "pglite"];
6
- type Driver = (typeof drivers)[number];
7
-
8
- export type { CasingType as C, Driver as D, Prefix as P };