Interface PowerStateResponse

interface PowerStateResponse {
    id: string;
    payload: { returnValue: boolean; state: string };
    type: "error" | "response" | "registered" | "prompt";
}

Hierarchy

Properties

Properties

id: string
payload: { returnValue: boolean; state: string }
type: "error" | "response" | "registered" | "prompt"