UNPKG

@synaptic-simulations/mach

Version:

The last MSFS instrument bundler you'll ever need.

12 lines (11 loc) 558 B
import type { BuildResultWithMeta, Instrument, MachArgs } from "./types"; /** * Run a one-off build with provided instruments and arguments. * @returns List of all build results. */ export declare function machBuild(instruments: Instrument[], args: MachArgs): Promise<PromiseSettledResult<BuildResultWithMeta>[]>; /** * Continuously build instruments when files are updated. * @returns list of initial build results. */ export declare function machWatch(instruments: Instrument[], args: MachArgs): Promise<PromiseSettledResult<BuildResultWithMeta>[]>;