UNPKG

nx

Version:

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

8 lines (7 loc) 233 B
export declare const GLOB: "GLOB"; export type HandleGlobMessage = { type: typeof GLOB; globs: string[]; exclude?: string[]; }; export declare function isHandleGlobMessage(message: unknown): message is HandleGlobMessage;