@opengis/fastify-table
Version:
core-plugins
22 lines • 557 B
TypeScript
import type { FastifyReply } from "fastify";
import type { ExtendedPG } from "../../../types/core.js";
export default function adminMenu({ user, session, pg, }: {
user: Record<string, any>;
session?: Record<string, any>;
pg: ExtendedPG;
}, reply: FastifyReply | null): Promise<{
menus: any;
} | {
settings: any;
user: {
uid: any;
user_name: any;
sur_name: any;
father_name: any;
email: any;
phone: any;
};
time: number;
menus: any;
}>;
//# sourceMappingURL=getMenu.d.ts.map