Loom Engine - v3.1.1
    Preparing search index...

    Interface TimelineEvent<T>

    interface TimelineEvent<T = Record<string, unknown>> {
        id: string;
        atTime: number;
        kind: string;
        label?: string;
        tags?: string[];
        payload?: T;
    }

    Type Parameters

    • T = Record<string, unknown>
    Index

    Properties

    id: string
    atTime: number
    kind: string
    label?: string
    tags?: string[]
    payload?: T