From e0cb696038f6f49b4096140797e9109c8b2f941b Mon Sep 17 00:00:00 2001 From: Jack Franklin Date: Tue, 5 May 2020 09:43:57 +0100 Subject: [PATCH] chore: migrate src/api.js to TypeScript --- src/{api.js => api.ts} | 4 ++++ 1 file changed, 4 insertions(+) rename src/{api.js => api.ts} (88%) diff --git a/src/api.js b/src/api.ts similarity index 88% rename from src/api.js rename to src/api.ts index c9f21edd0f113..bedc18e470a81 100644 --- a/src/api.js +++ b/src/api.ts @@ -14,6 +14,10 @@ * limitations under the License. */ +/* This file is used in two places: + * 1) the coverage-utils use it to gain a list of all methods we check for test coverage on + * 2) index.js uses it to iterate through all methods and call helper.installAsyncStackHooks on + */ module.exports = { Accessibility: require('./Accessibility').Accessibility, Browser: require('./Browser').Browser,