Interface IState

interface IState {
    data?: string;
    meta?: Meta;
    status?: StateStatus;
    timestamp?: string;
    type: StateType;
    [key: string]: any;
}

Implemented by

Indexable

  • [key: string]: any

Properties

data?: string
meta?: Meta
status?: StateStatus
timestamp?: string
type: StateType