insomnia/packages/insomnia-app/app/plugins/context/index.ts
Dimitri Mitropoulos 5f4c19da35
[TypeScript] Phase 1 & 2 (#3370)
Co-authored-by: Opender Singh <opender.singh@konghq.com>
2021-05-12 18:35:00 +12:00

16 lines
446 B
TypeScript

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;