UNPKG

@dotglitch/ngx-common

Version:

Angular components and utilities that are commonly used.

12 lines (11 loc) 381 B
import { Options } from './types'; export declare class RecursionDepth { private options; private fileRecursionDepth; private packageRecursionDepth; constructor(options: Options, fileRecursionDepth?: number, packageRecursionDepth?: number); nextPackage(): RecursionDepth; nextFile(): RecursionDepth; same(): RecursionDepth; shouldStop(): boolean; }