Package: effect
Module: TxReentrantLock
Checks whether the given value is a TxReentrantLock.
Example (Checking for TxReentrantLock values)
import { TxReentrantLock } from "effect"
declare const someValue: unknown
if (TxReentrantLock.isTxReentrantLock(someValue)) {
console.log("This is a TxReentrantLock")
}
Signature
declare const isTxReentrantLock: (u: unknown) => u is TxReentrantLock
Since v4.0.0