@opengis/fastify-table
Version:
core-plugins
19 lines • 446 B
TypeScript
import type { FastifyReply } from "fastify";
import type { ExtendedPG } from "../../../types/core.js";
export default function dataInfo({ pg, params, query, }: {
pg: ExtendedPG;
params: {
id?: string;
};
query: {
table?: string;
};
}, reply: FastifyReply): Promise<{
table: any;
columns: any;
rows: any;
cls: any;
sufix: boolean;
time: number;
}>;
//# sourceMappingURL=dataInfo.d.ts.map