import 'rollup-plugin-inject-process-env'; import { NewSearchAction } from "./NewSearchAction"; import { SetContextAction } from "./SetContextAction"; import { SetModalStateAction } from "./SetModalStateAction"; import { SetQueryAction } from "./SetQueryAction"; import { SetResponseAction } from "./SetResponseAction"; import { ToggleModalStateAction } from "./ToggleModalStateAction"; export type SearchAction = SetQueryAction | SetResponseAction | SetContextAction | SetModalStateAction | ToggleModalStateAction | NewSearchAction;