* @deprecated * But we cannot remove it. Because we want to migrate the old data.
| 36 | * But we cannot remove it. Because we want to migrate the old data. |
| 37 | */ |
| 38 | interface SyncMetaMappingRecord { |
| 39 | localKey: string; |
| 40 | remoteKey: string; |
| 41 | localSize: number; |
| 42 | remoteSize: number; |
| 43 | localMtime: number; |
| 44 | remoteMtime: number; |
| 45 | remoteExtraKey: string; |
| 46 | remoteType: SUPPORTED_SERVICES_TYPE; |
| 47 | keyType: "folder" | "file"; |
| 48 | vaultRandomID: string; |
| 49 | } |
| 50 | |
| 51 | interface SyncPlanRecord { |
| 52 | ts: number; |
nothing calls this directly
no outgoing calls
no test coverage detected