diff options
Diffstat (limited to 'vfs/vfs.ts')
| -rw-r--r-- | vfs/vfs.ts | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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. } |
