bunext/dist/functions/bundler/pages-ssr-bundler.d.ts
2026-04-14 15:50:21 +01:00

8 lines
192 B
TypeScript

type Params = {
post_build_fn?: (params: {
artifacts: any[];
}) => Promise<void> | void;
};
export default function pagesSSRBundler(params?: Params): Promise<void>;
export {};