UNPKG

458 BTypeScriptView Raw
1import { Tree } from '@nrwl/devkit';
2/**
3 * Calls a function for each different options that an executor is configured with
4 */
5export declare function forEachExecutorOptions<Options>(tree: Tree,
6/**
7 * Name of the executor to update options for
8 */
9executorName: string,
10/**
11 * Callback that is called for each options configured for a builder
12 */
13callback: (currentValue: Options, project: string, target: string, configuration?: string) => void): void;