lockObject.ts 166 B

123456789
  1. /**
  2. * Class used to provide lock mechanism
  3. */
  4. export class LockObject {
  5. /**
  6. * Gets or set if the lock is engaged
  7. */
  8. public lock = false;
  9. }