mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
5f4c19da35
Co-authored-by: Opender Singh <opender.singh@konghq.com>
16 lines
446 B
TypeScript
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;
|