DAVRequest
export type DAVRequest = {
headers?: Record<string, string>;
method: DAVMethods | HTTPMethods;
body: any;
namespace?: string;
attributes?: Record<string, string>;
};
davRequest init body
headers
request headersheadersToExclude
array of keys of the headers you want to excludefetchOptions
options to pass to underlying fetch functionmethod
request methodbody
request bodynamespace
default namespace for all xml nodesattributes
root node xml attributes