summaryrefslogtreecommitdiff
path: root/fs/path/interface.ts
diff options
context:
space:
mode:
Diffstat (limited to 'fs/path/interface.ts')
-rw-r--r--fs/path/interface.ts24
1 files changed, 2 insertions, 22 deletions
diff --git a/fs/path/interface.ts b/fs/path/interface.ts
index 84a3030ff..a140a4ca5 100644
--- a/fs/path/interface.ts
+++ b/fs/path/interface.ts
@@ -23,25 +23,5 @@ export interface ParsedPath {
*/
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;
-}
+
+export type FormatInputPathObject = Partial<ParsedPath>