nephele
Version:
Highly customizable and extensible WebDAV server for Node.js and Express.
10 lines (9 loc) • 402 B
TypeScript
import type { Request } from 'express';
import * as xml2js from 'xml2js';
import type { AuthResponse } from '../Interfaces/index.js';
import { Method } from './Method.js';
export declare class PROPPATCH extends Method {
xmlParserPreserveOrder: xml2js.Parser;
run(request: Request, response: AuthResponse): Promise<void>;
getPropPatchOrder(xmlBody: string): Promise<("set" | "remove")[]>;
}