6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
type Params = {
|
|
target?: "bun" | "browser";
|
|
};
|
|
export default function allPagesBunBundler(params?: Params): Promise<void>;
|
|
export {};
|