@twilio/flex-sdk
    Preparing search index...

    Interface ClientEventsType

    Events that the Flex SDK client can emit.

    interface ClientEventsType {
        clientDestroyed: () => void;
        tokenAutoUpdateFailed: () => void;
        tokenMaxLifetimeReached: (newTokenDateExpired: Date) => void;
        tokenUpdated: (token: string) => void;
        [key: string]: (...args: any[]) => void;
    }

    Indexable

    • [key: string]: (...args: any[]) => void
    Index

    Properties

    clientDestroyed: () => void
    tokenAutoUpdateFailed: () => void
    tokenMaxLifetimeReached: (newTokenDateExpired: Date) => void
    tokenUpdated: (token: string) => void