UNPKG
@huameow/schematics
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
huameow - modern, fast, powerful web framework (@schematics)
github.com/huameow/schematics
@huameow/schematics
/
dist
/
utils
/
name.parser.d.ts
13 lines
(12 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
Path
}
from
'@angular-devkit/core'
;
export
interface
ParseOptions
{
name
:
string
;
path
?:
string
; }
export
interface
Location
{
name
:
string
;
path
:
Path
; }
export
declare
class
NameParser
{
parse
(
options
:
ParseOptions
):
Location
; }