@opengis/fastify-table
Version:
core-plugins
15 lines • 425 B
TypeScript
import type { FastifyReply } from "fastify";
import type { ExtendedPG } from "../../../types/core.js";
export default function tableInfo({ pg, params, query, user, }: {
pg: ExtendedPG;
params: {
id: string;
table: string;
query?: string;
};
query: {
sql?: any;
};
user?: Record<string, any>;
}, reply: FastifyReply): Promise<{}>;
//# sourceMappingURL=tableInfo.d.ts.map