insomnia/packages/insomnia-app/app/plugins/context/index.js
Julien Giovaresco dfc89a3111
Allow prompt values to be clear + add actions to template tag plugin API (#2736)
Co-authored-by: Opender Singh <opender.singh@konghq.com>
2020-12-01 12:15:17 +13:00

17 lines
450 B
JavaScript

// @flow
import * as _app from './app';
import * as _data from './data';
import * as _network from './network';
import * as _request from './request';
import * as _response from './response';
import * as _store from './store';
export { PluginStore } from './store';
export const app = _app;
export const data = _data;
export const network = _network;
export const request = _request;
export const response = _response;
export const store = _store;