mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
/**
|
|
* Lock used by a {@link ResourceLocker} for non-atomic operations.
|
|
*/
|
|
export interface Lock {
|
|
/**
|
|
* Release this lock.
|
|
* @returns A promise resolving when the release is finished.
|
|
*/
|
|
release: () => Promise<void>;
|
|
}
|