@secam/pgsql-ast-parser
Version:
Fork of pgsql-ast-parser Simple Postgres SQL parser/modifier for pg-mem
7 lines • 299 B
TypeScript
import { IAstPartialMapper } from './ast-mapper';
import { ReplaceReturnType } from './utils';
export type IAstToSql = {
readonly [key in keyof IAstPartialMapper]-?: ReplaceReturnType<IAstPartialMapper[key], string>;
};
export declare const toSql: IAstToSql;
//# sourceMappingURL=to-sql.d.ts.map