Interface Event<T>

interface Event<T> {
    distinctId?: string;
    message?: string;
    severity?: LogLevel;
    [key: string]:
        | undefined
        | string
        | number
        | bigint
        | boolean
        | BigDecimal
        | BN
        | Attribute<T>
        | Exclude<T, Promise<any>>;
}

Type Parameters

  • T

Hierarchy (View Summary)

Indexable

  • [key: string]:
        | undefined
        | string
        | number
        | bigint
        | boolean
        | BigDecimal
        | BN
        | Attribute<T>
        | Exclude<T, Promise<any>>

Properties

distinctId?: string
message?: string
severity?: LogLevel