Interface StateInspectorSourceSnapshot

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