DAVObject
export type DAVObject = {
data?: any;
etag?: string;
url: string;
};
datathe raw content of an WEBDAV object.etagthe version string of content, if etag changed,datamust have been changed.urlurl of the WEBDAV object.
export type DAVObject = {
data?: any;
etag?: string;
url: string;
};
data the raw content of an WEBDAV object.etag the version string of content, if etag changed, data must have been changed.url url of the WEBDAV object.