import 'rollup-plugin-inject-process-env'; import { BaseSearchAction } from "./BaseSearchAction"; export interface SetContextAction extends BaseSearchAction<"set-context"> { /** * The active context paramteters */ readonly context: { [key: string]: string; }; }