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