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

5 lines
401 B
TypeScript

import Stream from "stream";
import { BufferLike, PutFileContentsOptions, WebDAVClientContext } from "../types.js";
export declare function putFileContents(context: WebDAVClientContext, filePath: string, data: string | BufferLike | Stream.Readable, options?: PutFileContentsOptions): Promise<boolean>;
export declare function getFileUploadLink(context: WebDAVClientContext, filePath: string): string;