2025-10-01 19:55:38 +02:00

9 lines
220 B
TypeScript

export declare class LockScope {
value: string;
static Shared: LockScope;
static Exclusive: LockScope;
constructor(value: string);
toString(): string;
isSame(scope: LockScope): boolean;
}