-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparsed-path.mts
62 lines (55 loc) · 914 Bytes
/
parsed-path.mts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/**
* @file Interfaces - ParsedPath
* @module pathe/interfaces/ParsedPath
*/
import type { EmptyString, Ext } from '@flex-development/pathe'
/**
* Object representing significant elements of a path.
*/
interface ParsedPath {
/**
* File name including extension (if any).
*
* @example
* 'index.html'
*/
base: string
/**
* Directory name or path.
*
* @example
* 'c:\\path\\dir'
* @example
* '/home/user/dir'
*/
dir: string
/**
* File extension (if any).
*
* @see {@linkcode EmptyString}
* @see {@linkcode Ext}
*
* @example
* '.html'
* @example
* 'ts'
*/
ext: EmptyString | Ext
/**
* File name without extension (if any).
*
* @example
* 'index'
*/
name: string
/**
* Root of path.
*
* @example
* '/'
* @example
* 'c:\\'
*/
root: string
}
export type { ParsedPath as default }