From 7832d981c699736b2ff09313484523079fccfcd5 Mon Sep 17 00:00:00 2001 From: bookmoons <35854232+bookmoons@users.noreply.github.com> Date: Tue, 2 Jul 2019 12:16:37 -0400 Subject: [PATCH] k6: Expose everything to autoimport (#36586) --- types/k6/index.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/types/k6/index.d.ts b/types/k6/index.d.ts index 24b8a4ac36..51151481d0 100644 --- a/types/k6/index.d.ts +++ b/types/k6/index.d.ts @@ -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(val: T, sets: Checkers, tags?: object): boolean; export function fail(err?: string): never; export function group(name: string, fn: () => T): T;