UNPKG

nx

Version:

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

26 lines (25 loc) 637 B
export interface ImportOptions { /** * The remote URL of the repository to import */ sourceRepository: string; /** * The branch or reference to import */ ref: string; /** * The directory in the source repo to import */ source: string; /** * The directory in the destination repo to import into */ destination: string; /** * The depth to clone the source repository (limit this for faster clone times) */ depth: number; verbose: boolean; interactive: boolean; } export declare function importHandler(options: ImportOptions): Promise<void>;