Interface ForegroundState

interface ForegroundState {
    inForegroundApp?: boolean;
    inForegroundDevice?: boolean;
    keepAliveTimeout?: number;
    requestId?: bigint;
    subscribeGenericTopics?: string[];
    subscribeTopics?: string[];
    unsubscribeGenericTopics?: string[];
    unsubscribeTopics?: string[];
}

Properties

inForegroundApp?: boolean
inForegroundDevice?: boolean
keepAliveTimeout?: number
requestId?: bigint
subscribeGenericTopics?: string[]
subscribeTopics?: string[]
unsubscribeGenericTopics?: string[]
unsubscribeTopics?: string[]