feat: uid/gid/mode added to metadata (#1551)

This commit is contained in:
J M
2022-06-17 12:16:04 -06:00
committed by GitHub
parent 452c8ea2d9
commit 948fb795f2
3 changed files with 19 additions and 1 deletions

View File

@@ -65,7 +65,6 @@ export type Effects = {
};
export type Metadata = {
fileType: string,
isDir: boolean,
isFile: boolean,
@@ -75,6 +74,9 @@ export type Metadata = {
accessed?: Date,
created?: Date,
readonly: boolean,
uid: number,
gid: number,
mode: number
}
export type MigrationRes = {