DAVRequest
export type DAVRequest = {
headers?: Record<string, string>;
method: DAVMethods | HTTPMethods;
body: any;
namespace?: string;
attributes?: Record<string, string>;
};
davRequest init body
headers
request headersmethod
request methodbody
request bodynamespace
default namespace for all xml nodesattributes
root node xml attributes