-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatform-path-posix.mts
58 lines (52 loc) · 993 Bytes
/
platform-path-posix.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
/**
* @file Interfaces - PosixPlatformPath
* @module pathe/interfaces/PosixPlatformPath
*/
import type {
PlatformPath,
PosixDelimiter,
PosixSep,
WindowsPlatformPath
} from '@flex-development/pathe'
/**
* POSIX utilities for working with file and directory paths.
*
* @see {@linkcode PlatformPath}
*
* @extends {PlatformPath}
*/
interface PosixPlatformPath extends PlatformPath {
/**
* Path delimiter.
*
* @see {@linkcode PosixDelimiter}
*
* @readonly
*/
readonly delimiter: PosixDelimiter
/**
* Posix specific pathing.
*
* @see {@linkcode PosixPlatformPath}
*
* @readonly
*/
readonly posix: PosixPlatformPath
/**
* Path segment separator.
*
* @see {@linkcode PosixSep}
*
* @readonly
*/
readonly sep: PosixSep
/**
* Windows specific pathing.
*
* @see {@linkcode WindowsPlatformPath}
*
* @readonly
*/
readonly win32: WindowsPlatformPath
}
export type { PosixPlatformPath as default }