mirror of
https://github.com/remotely-save/remotely-save.git
synced 2024-06-07 21:10:45 +00:00
14 lines
244 B
TypeScript
14 lines
244 B
TypeScript
/**
|
|
* Only type defs here.
|
|
*/
|
|
|
|
export type SUPPORTED_SERVICES_TYPE = "s3" | "webdav" | "dropbox";
|
|
|
|
export interface RemoteItem {
|
|
key: string;
|
|
lastModified: number;
|
|
size: number;
|
|
remoteType: SUPPORTED_SERVICES_TYPE;
|
|
etag?: string;
|
|
}
|