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