aboutsummaryrefslogtreecommitdiff
path: root/vfs/vfs.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vfs/vfs.d.ts')
-rw-r--r--vfs/vfs.d.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/vfs/vfs.d.ts b/vfs/vfs.d.ts
index 177fcfd..5e89b33 100644
--- a/vfs/vfs.d.ts
+++ b/vfs/vfs.d.ts
@@ -3,11 +3,11 @@ export interface WuiVfsNodeInterface {
name: string;
path: string;
is_dir: boolean;
- content_type: string;
- mod_time: number;
- size: number;
- mode: string;
- childs: WuiVfsNodeInterface[];
+ content_type?: string;
+ mod_time?: number;
+ size?: number;
+ mode?: string;
+ childs?: WuiVfsNodeInterface[];
content: string;
}
export interface WuiVfsOptions {