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.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/vfs/vfs.d.ts b/vfs/vfs.d.ts
index 9a9ea22..15275e5 100644
--- a/vfs/vfs.d.ts
+++ b/vfs/vfs.d.ts
@@ -3,8 +3,8 @@ export interface WuiVfsNodeInterface {
name: string;
path: string;
is_dir?: boolean;
- mod_time_epoch?: number;
- mod_time_rfc3339?: string;
+ content_type?: string;
+ mod_time?: number;
size?: number;
mode?: string;
childs?: WuiVfsNodeInterface[];
@@ -26,8 +26,8 @@ export declare class WuiVfs {
declare class WuiVfsNode implements WuiVfsNodeInterface {
path: string;
name: string;
- mod_time_epoch: number;
- mod_time_rfc3339: string;
+ content_type: string;
+ mod_time: number;
size: number;
mode: string;
is_dir: boolean;