dotup-ts-node-skills-game
Version:
Develop alexa typescript games
13 lines (12 loc) • 530 B
TypeScript
import { HandlerInput, RequestInterceptor } from 'ask-sdk-core';
import { IGameRequirements } from '../Interfaces/IGameRequirements';
export declare class AlexaGameRequestInterceptor implements RequestInterceptor {
private readonly logger;
private readonly gameRequirements;
constructor(gameRequirements: IGameRequirements);
process(handlerInput: HandlerInput): Promise<void>;
}
/**
* If IRequestAttributes.persistentAttributes not is undefined, the data ist stored
* with the configured persistence adapter
*/