UNPKG

260 BTypeScriptView Raw
1import { Path } from '@angular-devkit/core';
2export interface ParseOptions {
3 name: string;
4 path?: string;
5}
6export interface Location {
7 name: string;
8 path: Path;
9}
10export declare class NameParser {
11 parse(options: ParseOptions): Location;
12}