UNPKG

@nx/js

Version:

The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects.

8 lines (7 loc) 306 B
import { ExecutorContext } from '@nx/devkit'; import { NodeExecutorOptions } from './schema'; export declare function nodeExecutor(options: NodeExecutorOptions, context: ExecutorContext): AsyncGenerator<{ success: boolean; options?: Record<string, any>; }, void, any>; export default nodeExecutor;