We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7566c65 commit 7951d72Copy full SHA for 7951d72
packages/parser/types/index.d.ts
@@ -1,5 +1,5 @@
1
-import { Deparser, deparse } from 'pgsql-deparser';
+import { Node } from '@pgsql/types';
2
import { parsePlPgSQLSync as parseFunction } from 'libpg-query';
3
-export declare const parse: (sql: any) => any;
+export declare const parse: (sql: any) => Node;
4
export declare const parseAsync: (sql: any) => Promise<any>;
5
-export { deparse, Deparser, parseFunction };
+export { parseFunction };
0 commit comments