UNPKG

@synaptic-simulations/mach

Version:

The last MSFS instrument bundler you'll ever need.

11 lines (10 loc) 403 B
import type { Message } from "esbuild"; import type { BuildResultWithMeta } from "./types"; export declare class BuildLogger { private readonly logger; private readonly verbose; constructor(scope: string, verbose?: boolean); buildComplete(name: string, time: number, result: BuildResultWithMeta): void; buildFailed(errors: Message[]): void; changeDetected(file: string): void; }