include node_modules so release .zip is deployable
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std
|
||||
*/
|
||||
import { ILockable } from "../base/thread/ILockable";
|
||||
/**
|
||||
* Mutex.
|
||||
*
|
||||
* @author Jeongho Nam - https://github.com/samchon
|
||||
*/
|
||||
export declare class Mutex implements ILockable {
|
||||
private mutex_;
|
||||
/**
|
||||
* Default Constructor.
|
||||
*/
|
||||
constructor();
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
lock(): Promise<void>;
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
try_lock(): Promise<boolean>;
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
unlock(): Promise<void>;
|
||||
}
|
||||
Reference in New Issue
Block a user