/** * Class used to provide lock mechanism */ export class LockObject { /** * Gets or set if the lock is engaged */ public lock = false; }