Skip to content

Instantly share code, notes, and snippets.

@marcorei
Last active December 31, 2017 14:54
Show Gist options
  • Save marcorei/2dce89be9da494966080895b6ac19c1b to your computer and use it in GitHub Desktop.
Save marcorei/2dce89be9da494966080895b6ac19c1b to your computer and use it in GitHub Desktop.
import { DialogflowApp } from 'actions-on-google'
export const name = 'demo_action'
export function handler(app: DialogflowApp) {
const paramNumber = parseInt(app.getArgument('number').toString())
app.tell(`I incremented your number. Here you go: ${paramNumber + 1}`)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment