Interface SoundOutputResponse

interface SoundOutputResponse {
    id: string;
    payload: { returnValue: boolean; soundOutput: SoundOutput };
    type: "error" | "response" | "registered" | "prompt";
}

Hierarchy

Properties

Properties

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