UNPKG

@nx/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

13 lines 406 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 {}; //# sourceMappingURL=counter.impl.d.ts.map