beesbuild
Version:
构建工具链
7 lines (6 loc) • 512 B
TypeScript
import type { RollupOutputKey } from '@beesbuild/utils';
import type { BuildContext } from '../types';
export declare function tryResolve(id: string, rootDir?: string): string;
export declare const stubBuild: (module: RollupOutputKey, ctx: BuildContext) => Promise<void>;
export declare const runBrowserRollupStub: (modules: RollupOutputKey[], ctx: BuildContext) => Promise<PromiseSettledResult<void>[]>;
export declare const rollupStub: (ctx: BuildContext) => Promise<PromiseSettledResult<void>[] | undefined>;