@creator.co/wapi - v1.8.1
    Preparing search index...

    Type Alias DatabaseTransactionType<Type, DBSchema>

    DatabaseTransactionType: 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.