NeahNew/node_modules/webdav/dist/node/operations/getFileContents.d.ts
2025-05-03 14:17:46 +02:00

4 lines
407 B
TypeScript

import { BufferLike, GetFileContentsOptions, ResponseDataDetailed, WebDAVClientContext } from "../types.js";
export declare function getFileContents(context: WebDAVClientContext, filePath: string, options?: GetFileContentsOptions): Promise<BufferLike | string | ResponseDataDetailed<BufferLike | string>>;
export declare function getFileDownloadLink(context: WebDAVClientContext, filePath: string): string;