8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
type Params = {
|
|
post_build_fn?: (params: {
|
|
artifacts: any[];
|
|
}) => Promise<void> | void;
|
|
};
|
|
export default function allPagesESBuildContextBundlerFiles(params?: Params): Promise<void>;
|
|
export {};
|