UNPKG

intentful

Version:

Create Custom Skills with less headache

6 lines (5 loc) 375 B
import * as Alexa from 'ask-sdk-core'; import { Request } from 'ask-sdk-model'; import { IntentHandler } from './types'; export declare const wrapHandler: <T extends Request>(handler: IntentHandler<T>) => (input: Alexa.HandlerInput) => import("ask-sdk-model").Response | Promise<import("ask-sdk-model").Response>; export declare const hashValue: (prompt: unknown) => string;