UNPKG

ask-sdk-addon

Version:
24 lines (23 loc) 798 B
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; }