UNPKG

@rxdi/schematics

Version:

14 lines (13 loc) 279 B
import { Path } from '@angular-devkit/core'; export interface ParseOptions { name: string; path?: string; } export interface Location { name: string; path: Path; } export declare class NameParser { constructor(); parse(options: ParseOptions): Location; }