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

7 lines
191 B
TypeScript

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