From 65a84f940df7362fc64fa440f9ba01f823b1074c Mon Sep 17 00:00:00 2001 From: Robert Date: Wed, 7 Feb 2024 12:50:52 +0000 Subject: [PATCH] Delete src/additional-typings.d.ts --- extensions/ql-vscode/src/additional-typings.d.ts | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 extensions/ql-vscode/src/additional-typings.d.ts diff --git a/extensions/ql-vscode/src/additional-typings.d.ts b/extensions/ql-vscode/src/additional-typings.d.ts deleted file mode 100644 index d5a10a5f0..000000000 --- a/extensions/ql-vscode/src/additional-typings.d.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * The d3 library is designed to work in both the browser and - * node. Consequently their typings files refer to both node - * types like `Buffer` (which don't exist in the browser), and browser - * types like `Blob` (which don't exist in node). Instead of sticking - * all of `dom` in `compilerOptions.lib`, it suffices just to put in a - * stub definition of the affected types so that compilation - * succeeds. - */ - -declare type RequestInit = Record; -declare type ElementTagNameMap = any; -declare type NodeListOf = Record; -declare type Node = Record; -declare type XMLDocument = Record;