forked from convoyinc/graphql-client-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.ts
25 lines (19 loc) · 795 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import { consoleReporter } from './reporters/console'; // eslint-disable-line import/no-internal-modules
import { polyfillEnvironment } from './environment';
polyfillEnvironment();
export { consoleReporter };
export * from './Benchmark';
export * from './Client';
export * from './Example';
export * from './environment';
export * from './execution';
export * from './partial';
export function loadBenchmarks(): typeof import('../benchmarks') {
return require('../benchmarks'); // eslint-disable-line global-require
}
export function loadClients(): typeof import('../clients') {
return require('../clients'); // eslint-disable-line global-require
}
export function loadExamples(): typeof import('../examples') {
return require('../examples'); // eslint-disable-line global-require
}