Interface InsightInterfaceState

interface InsightInterfaceState {
    config?: {
        contextFields: Record<string, string>;
        interface?: InsightInterface;
    };
    error?: InsightAPIErrorStatusResponse;
    loading: boolean;
}

Properties

config?: {
    contextFields: Record<string, string>;
    interface?: InsightInterface;
}
loading: boolean