Skip to content

Instantly share code, notes, and snippets.

@slowtick
slowtick / dialogflow-fulfillment.d.ts
Created August 2, 2019 08:59 — forked from diegodalbosco/dialogflow-fulfillment.d.ts
Fix payload constructor parameters
declare module 'dialogflow-fulfillment' {
import { DialogflowConversation } from 'actions-on-google';
import { Request, Response } from 'express';
export class Card extends RichResponse {
constructor(card: string | object);
public setButton(button: {
text: string,
url: string,