UNPKG

@nrwl/workspace

Version:

Smart, Fast and Extensible Build System.

13 lines (12 loc) 364 B
interface CounterOptions { to: number; result: boolean; } export default function counter(opts: CounterOptions): AsyncGenerator<{ success: boolean; }, void, unknown>; export declare function batchCounter(taskGraph: any, inputs: Record<string, CounterOptions>): Promise<Record<string, { success: boolean; terminalOutput: string; }>>; export {};