Interface AppleDevice

interface AppleDevice {
    id: string;
    name: string;
    model_id?: string;
    availability: "available" | "notPaired" | "notConnected" | "pairedNeedsConnect" | "pairedNeedsReconnect";
}

Properties

id: string
name: string
model_id?: string
availability: "available" | "notPaired" | "notConnected" | "pairedNeedsConnect" | "pairedNeedsReconnect"

Generated using TypeDoc