Type Alias DatabaseTransactionType<Type, DBSchema>

DatabaseTransactionType<Type, DBSchema>: DatabaseImplType<Type, DBSchema> extends Database<infer TransactionType>
    ? TransactionType
    : never

Defines the type of transaction for a specific database type and schema.

Type Parameters

  • Type extends DatabaseType

    The type of the database.

  • DBSchema

    The schema of the database.

The transaction type associated with the database type and schema.