UNPKG

nephele

Version:

Highly customizable and extensible WebDAV server for Node.js and Express.

7 lines (6 loc) 253 B
import type { Request } from 'express'; import type { AuthResponse } from '../Interfaces/index.js'; import { Method } from './Method.js'; export declare class PROPFIND extends Method { run(request: Request, response: AuthResponse): Promise<void>; }