Loom Engine - v0.10.1
    Preparing search index...

    Interface EventEnvelope<T>

    interface EventEnvelope<T extends DirectorEventType = DirectorEventType> {
        id: number;
        ts: number;
        type: T;
        character_id: string;
        encounter_id: string | null;
        priority?: EventPriority;
        data: DirectorEventDataMap[T];
    }

    Type Parameters

    Index

    Properties

    id: number
    ts: number
    type: T
    character_id: string
    encounter_id: string | null
    priority?: EventPriority