UNPKG

nx

Version:

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

12 lines 312 B
export interface CatalogReference { catalogName?: string; isDefaultCatalog: boolean; } export interface CatalogEntry { [packageName: string]: string; } export interface CatalogDefinitions { catalog?: CatalogEntry; catalogs?: Record<string, CatalogEntry>; } //# sourceMappingURL=types.d.ts.map