k6: Expose everything to autoimport (#36586)

This commit is contained in:
bookmoons
2019-07-02 09:16:37 -07:00
committed by Ryan Cavanaugh
parent e4a0d4f532
commit 7832d981c6
+9
View File
@@ -20,6 +20,15 @@
import './global'; // Type global environment
// Expose everything to autoimport
import './crypto';
import './encoding';
import './html';
import './http';
import './metrics';
import './options';
import './ws';
export function check<T>(val: T, sets: Checkers<T>, tags?: object): boolean;
export function fail(err?: string): never;
export function group<T>(name: string, fn: () => T): T;