bunext/dist/functions/server/web-pages/grab-page-bundled-react-component.d.ts
2026-04-09 07:47:38 +01:00

8 lines
307 B
TypeScript

import type { GrabPageReactBundledComponentRes } from "../../../types";
type Params = {
file_path: string;
return_tsx_only?: boolean;
};
export default function grabPageBundledReactComponent({ file_path, return_tsx_only, }: Params): Promise<GrabPageReactBundledComponentRes | undefined>;
export {};