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

4 lines
356 B
TypeScript

import { LockOptions, LockResponse, WebDAVClientContext, WebDAVMethodOptions } from "../types.js";
export declare function lock(context: WebDAVClientContext, path: string, options?: LockOptions): Promise<LockResponse>;
export declare function unlock(context: WebDAVClientContext, path: string, token: string, options?: WebDAVMethodOptions): Promise<void>;