UNPKG

nx

Version:

The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.

9 lines (8 loc) 258 B
interface MigrationShape { prompt?: string; implementation?: string; factory?: string; } export declare function isPromptOnlyMigration(m: MigrationShape): boolean; export declare function isHybridMigration(m: MigrationShape): boolean; export {};