/** * load.query.ts * * All the actual sql queries used to load type data from postgres * Used by [load.ts](./load.ts). */ import { LoadedDataRaw, QualifiedName } from './load.types'; /** * We construct the data by hand as potygen can't effectively load types from information_schema views */ interface LoadAllSql { params: {}; result: LoadedDataRaw[]; } /** * We construct the data by hand as potygen can't effectively load types from information_schema views */ interface LoadSql { params: { tableNames: QualifiedName[]; compositeNames: QualifiedName[]; enumNames: QualifiedName[]; functionNames: QualifiedName[]; }; result: LoadedDataRaw[]; } /** * A query to load {@link LoadedDataRaw} data for all the possible data points in the database. * * - Functions * - Enums * - Composites * - Tables */ export declare const allSql: import("./sql.types").Query; /** * A query to load {@link LoadedDataRaw} data only for specific {@link Data} * * - Functions * - Enums * - Composites * - Tables */ export declare const selectedSql: import("./sql.types").Query; export {};