/*! Copyright (c) 2019, XAPPmedia */ /** * Represents a requirement about the availability of a given capability * * @see https://developers.google.com/actions/reference/rest/Shared.Types/ActionPackage#Capability * * @export * @interface Capability */ export interface Capability { /** * The name of the capability, e.g. actions.capability.AUDIO_OUTPUT * * @type {string} * @memberof Capability */ name: string; }