import { HandlerInput } from 'ask-sdk-core'; /** * Defines the input object passed around during processing by Controls. * * This is the minimal definition required by the Runtime (ControlHandler) * See `ControlInput` for the actual class used by Control implementations. */ export interface IControlInput { readonly handlerInput: HandlerInput; readonly turnNumber: number; } //# sourceMappingURL=IControlInput.d.ts.map