UNPKG

@documentica/webdav

Version:
11 lines (10 loc) 501 B
import { WebdavMethodParams, IPropFindResponse } from "../types"; import { IProperty } from "../Property"; import { WebdavDepthType } from "../Response"; export interface PropFindParams extends WebdavMethodParams { properties: string[]; depth: WebdavDepthType; success: (items: IPropFindResponse[], root?: IPropFindResponse) => void; include?: IProperty[]; } export default function propFind({ config, path, properties, depth, success, fail, headers, include }: PropFindParams): void;