New Feature

- Hidden file sync.
This commit is contained in:
vorotamoroz
2022-07-19 17:57:29 +09:00
parent 0e6a6dcd2a
commit fddc466b0f
5 changed files with 439 additions and 9 deletions

View File

@@ -22,3 +22,11 @@ export interface DevicePluginList {
[key: string]: PluginDataEntry;
}
export const PERIODIC_PLUGIN_SWEEP = 60;
export interface InternalFileInfo {
path: string;
mtime: number;
ctime: number;
size: number;
deleted?: boolean;
}