voxa-dashbot
Version:
Integrate Dashbot analytics into your Alexa apps using the voxa framework
15 lines (12 loc) • 374 B
TypeScript
declare module "dashbot" {
interface DashbotPlatforms {
alexa: DashbotPlatform;
}
interface DashbotConfig {}
class DashbotPlatform {
public logOutgoing(rawEvent: any, reply: any): Promise<any>;
public logIncoming(rawEvent: any): Promise<any>;
}
function dashbot(apiKey: string, config: DashbotConfig): DashbotPlatforms;
export default dashbot;
}