drizzle-kit 0.20.17-c347d7b → 0.20.17-d1b2821

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,14 +14,12 @@ type CustomDefault = {
14
14
  };
15
15
  export type Setup = {
16
16
  dialect: "postgresql" | "mysql" | "sqlite";
17
- driver?: "aws-data-api";
18
17
  proxy: (params: ProxyParams) => Promise<any[] | any>;
19
18
  customDefaults: CustomDefault[];
20
19
  };
21
20
  export type ProxyParams = {
22
21
  sql: string;
23
22
  params: any[];
24
- typings?: any[];
25
23
  mode: "array" | "object";
26
24
  method: "values" | "get" | "all" | "run" | "execute";
27
25
  };
@@ -49,5 +47,5 @@ export type Server = {
49
47
  cb: (err: Error | null, address: string) => void;
50
48
  }) => void;
51
49
  };
52
- export declare const prepareServer: ({ dialect, driver, proxy, customDefaults }: Setup, app?: Hono) => Promise<Server>;
50
+ export declare const prepareServer: ({ dialect, proxy, customDefaults }: Setup, app?: Hono) => Promise<Server>;
53
51
  export {};