4 lines
344 B
TypeScript
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>;
|