ask-sdk-addon
Version:
Addons for Alexa Skill Kit SDK v2
24 lines (23 loc) • 798 B
TypeScript
import { RequestEnvelope } from 'ask-sdk-model';
export declare class InterfaceHelper {
/**
* Check if AudioPlayer is supported by calling device
* @param requestEnvelope
*/
static isAudioPlayerSupported(requestEnvelope: RequestEnvelope): boolean;
/**
* Check if VideoPlayer is supported by calling device
* @param requestEnvelope
*/
static isVideoPlayerSupported(requestEnvelope: RequestEnvelope): boolean;
/**
* Check if Display is supported by calling device
* @param requestEnvelope
*/
static isDisplaySupported(requestEnvelope: RequestEnvelope): boolean;
/**
* Check if APL is supported by calling device
* @param requestEnvelope
*/
static isAPLSupported(requestEnvelope: RequestEnvelope): boolean;
}