bunext/dist/functions/server/cleanup-artifacts.d.ts
2026-03-23 07:42:00 +01:00

7 lines
200 B
TypeScript

import type { BundlerCTXMap } from "../../types";
type Params = {
new_artifacts: BundlerCTXMap[];
};
export default function cleanupArtifacts({ new_artifacts }: Params): Promise<void>;
export {};