8 lines
243 B
TypeScript
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 {};
|