7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
import type { BundlerCTXMap } from "../../types";
|
|
type Params = {
|
|
artifacts: BundlerCTXMap[];
|
|
};
|
|
export default function serverPostBuildFn({ artifacts }: Params): Promise<void>;
|
|
export {};
|