/*! Copyright (c) 2019, XAPPmedia */ import { GoogleActionsV2RichResponseItem } from "actions-on-google"; /** * A item with a card * * @export * @interface BasicCardItem */ export type BasicCardItem = Pick; export type SimpleResponseItem = Pick; export type StructuredResponseItem = Pick; export type MediaResponseItem = Pick; /** * A list of UI elements. * * @see https://developers.google.com/actions/reference/rest/Shared.Types/AppResponse#Item * * @export * @interface Item */ export type Item = SimpleResponseItem | BasicCardItem | StructuredResponseItem | MediaResponseItem;