/** * _DeviceMethod shape */ export interface _DeviceMethod { /** *
The type of the device, such as "button".
*/ DeviceType?: string; /** *The name of the method applicable to the deviceType.
*/ MethodName?: string; } export declare type _UnmarshalledDeviceMethod = _DeviceMethod;