insomnia/packages/insomnia-app/app/plugins/context/index.js
2021-02-03 12:19:22 +13:00

17 lines
455 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 type { 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;