bunext/dist/functions/bundler/all-pages-bun-bundler.d.ts
2026-03-23 07:42:00 +01:00

8 lines
243 B
TypeScript

import type { BundlerCTXMap } from "../../types";
type Params = {
target?: "bun" | "browser";
page_file_paths?: string[];
};
export default function allPagesBunBundler(params?: Params): Promise<BundlerCTXMap[] | undefined>;
export {};