durrrrrrrrrjs
Version:
9 lines (8 loc) • 494 B
TypeScript
import { ExecutorContext } from '@nrwl/devkit';
import { ExecutorOptions, NormalizedExecutorOptions } from '../../utils/schema';
export declare function normalizeOptions(options: ExecutorOptions, contextRoot: string, sourceRoot?: string, projectRoot?: string): NormalizedExecutorOptions;
export declare function tscExecutor(_options: ExecutorOptions, context: ExecutorContext): AsyncGenerator<{
success: boolean;
outfile: string;
}, any, undefined>;
export default tscExecutor;