bunext/dist/functions/server/web-pages/grab-web-meta-html.d.ts

7 lines
189 B
TypeScript

import type { BunextPageModuleMeta } from "../../../types";
type Params = {
meta: BunextPageModuleMeta;
};
export default function grabWebMetaHTML({ meta }: Params): string;
export {};