Serializable snapshot of a state inspector source for display.

export interface StateInspectorSourceSnapshot {
id: string;
label: string;
description?: string;
group: string;
value: unknown;
lastUpdated: number;
canEdit: boolean;
}
interface StateInspectorSourceSnapshot {
    id: string;
    label: string;
    description?: string;
    group: string;
    value: unknown;
    lastUpdated: number;
    canEdit: boolean;
}

Properties

id: string
label: string
description?: string
group: string
value: unknown
lastUpdated: number
canEdit: boolean