bunext/dist/functions/bundler/plugins/esbuild-ctx-artifact-tracker.d.ts
2026-07-01 19:18:11 +01:00

14 lines
417 B
TypeScript

import { type Plugin } from "esbuild";
import type { PageFiles } from "../../../types";
type Params = {
entryToPage: Map<string, PageFiles & {
tsx: string;
}>;
post_build_fn?: (params: {
artifacts: any[];
}) => Promise<void> | void;
build_only?: boolean;
};
export default function esbuildCTXArtifactTracker({ entryToPage, post_build_fn, build_only, }: Params): Plugin;
export {};