Chat Viewer
    Preparing search index...

    Type Alias IdentifiableMessage

    IdentifiableMessage type that must have an id property. This is the base type for messages used in the chat viewer.

    This library relies on the id property to uniquely identify messages.

    type IdentifiableMessage = {
        id: string | number;
    }
    Index

    Properties

    Properties

    id: string | number