This commit is contained in:
fyears
2022-03-12 21:35:59 +08:00
parent 2d9610cd92
commit 479d2a4fac
3 changed files with 30 additions and 14 deletions
+3 -1
View File
@@ -26,13 +26,15 @@ export interface DropboxConfig {
}
export type WebdavAuthType = "digest" | "basic";
export type WebdavDepthType = "auto_unknown" | "auto_1" | "auto_infinity" | "manual_1" | "manual_infinity";
export interface WebdavConfig {
address: string;
username: string;
password: string;
authType: WebdavAuthType;
manualRecursive: boolean;
manualRecursive: boolean; // deprecated in 0.3.6, use depth
depth?: WebdavDepthType;
}
export interface OnedriveConfig {