remove node_modules and .gitignore them
This commit is contained in:
-37
@@ -1,37 +0,0 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { ITimedLockable } from "../base/thread/ITimedLockable";
|
||||
/**
|
||||
* Timed mutex.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class TimedMutex implements ITimedLockable {
|
||||
private mutex_;
|
||||
/**
|
||||
* Default Constructor.
|
||||
*/
|
||||
constructor();
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
lock(): Promise<void>;
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
try_lock(): Promise<boolean>;
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
unlock(): Promise<void>;
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
try_lock_for(ms: number): Promise<boolean>;
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
try_lock_until(at: Date): Promise<boolean>;
|
||||
}
|
||||
Reference in New Issue
Block a user