diff options
| author | 木杉 <zhmushan@qq.com> | 2019-01-11 06:11:44 +0800 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-10 17:11:44 -0500 |
| commit | 57c877c443765d7aa1f1f2d3cba801f280f19bfa (patch) | |
| tree | 8a6d28410631497413fb32d9ff54b312f7e3d825 /fs/path/interface.ts | |
| parent | 6f8dc44a2b218bac3fb3ebb1035cbbd10160b48b (diff) | |
refactor(path): reorg (denoland/deno_std#101)
Original: https://github.com/denoland/deno_std/commit/5be16ba5992b34a64d307779350b88b5cacbfa23
Diffstat (limited to 'fs/path/interface.ts')
| -rw-r--r-- | fs/path/interface.ts | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/fs/path/interface.ts b/fs/path/interface.ts new file mode 100644 index 000000000..84a3030ff --- /dev/null +++ b/fs/path/interface.ts @@ -0,0 +1,47 @@ +/** + * A parsed path object generated by path.parse() or consumed by path.format(). + */ +export interface ParsedPath { + /** + * The root of the path such as '/' or 'c:\' + */ + root: string; + /** + * The full directory path such as '/home/user/dir' or 'c:\path\dir' + */ + dir: string; + /** + * The file name including extension (if any) such as 'index.html' + */ + base: string; + /** + * The file extension (if any) such as '.html' + */ + ext: string; + /** + * The file name without extension (if any) such as 'index' + */ + name: string; +} +export interface FormatInputPathObject { + /** + * The root of the path such as '/' or 'c:\' + */ + root?: string; + /** + * The full directory path such as '/home/user/dir' or 'c:\path\dir' + */ + dir?: string; + /** + * The file name including extension (if any) such as 'index.html' + */ + base?: string; + /** + * The file extension (if any) such as '.html' + */ + ext?: string; + /** + * The file name without extension (if any) such as 'index' + */ + name?: string; +} |
