Neah/node_modules/webdav/dist/node/operations/partialUpdateFileContents.d.ts
2025-04-24 19:10:05 +02:00

4 lines
344 B
TypeScript

import { Readable } from "stream";
import { BufferLike, WebDAVMethodOptions, WebDAVClientContext } from "../types.js";
export declare function partialUpdateFileContents(context: WebDAVClientContext, filePath: string, start: number | null, end: number | null, data: string | BufferLike | Readable, options?: WebDAVMethodOptions): Promise<void>;