UNPKG

@markg85/webdav-server

Version:
10 lines (9 loc) 290 B
import { LockScope } from './LockScope'; import { LockType } from './LockType'; export declare class LockKind { scope: LockScope; type: LockType; timeout: number; constructor(scope: LockScope, type: LockType, timeout?: number); isSimilar(lockKind: LockKind): boolean; }