import 'rollup-plugin-inject-process-env'; import { Response } from "stentor-models"; import { BaseSearchAction } from "./BaseSearchAction"; export interface SetResponseAction extends BaseSearchAction<"set-response"> { /** * The current response */ readonly response: Response; /** * The query associated with the response */ readonly query?: string; /** * The intentId associated with the response. */ readonly intentId?: string; }