aboutsummaryrefslogtreecommitdiff
path: root/vfs/vfs.ts
diff options
context:
space:
mode:
Diffstat (limited to 'vfs/vfs.ts')
-rw-r--r--vfs/vfs.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/vfs/vfs.ts b/vfs/vfs.ts
index b1b0881..c6a5a8d 100644
--- a/vfs/vfs.ts
+++ b/vfs/vfs.ts
@@ -8,11 +8,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 // If its not empty, it MUST be encoded in base64.
}