Type alias AbortableLockRequest

AbortableLockRequest: {
    abort: (() => void);
    aborted: boolean;
    isAborted: (() => boolean);
    promise: Promise<Unlock | null>;
}

Type declaration

  • abort: (() => void)
      • (): void
      • Returns void

  • Readonly aborted: boolean
  • isAborted: (() => boolean)
      • (): boolean
      • Returns boolean

  • promise: Promise<Unlock | null>

Generated using TypeDoc