13 lines
379 B
TypeScript
13 lines
379 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;
|
|
};
|
|
export default function esbuildCTXArtifactTracker({ entryToPage, post_build_fn, }: Params): Plugin;
|
|
export {};
|