Type Alias TransactionOptions

TransactionOptions: {
    hint?: string;
    isReadOnly?: boolean;
}

Interface representing options for a transaction.

Type declaration

  • Optionalhint?: string

    A hint for the transaction, useful for debugging and testing. Defaults to null.

  • OptionalisReadOnly?: boolean

    Indicates whether the transaction is read-only. Defaults to false.