@sentio/sdk
    Preparing search index...

    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>>
    Index

    Properties

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