@opengis/fastify-table
Version:
core-plugins
15 lines • 446 B
TypeScript
import { type FastifyReply } from "fastify";
import { type ExtendedPG } from "../../../types/core.js";
export default function accessGroupPost({ pg, params, user, body, unittest, }: {
pg: ExtendedPG;
params: {
id: string;
};
user: Record<string, any>;
body: Record<string, any>;
unittest?: any;
}, reply: FastifyReply): Promise<{
routes: any;
users: any;
}>;
//# sourceMappingURL=access.group.post.d.ts.map