Fixed eslint errors

This commit is contained in:
Geomitron
2020-03-14 17:33:07 -04:00
parent f8316d18e7
commit 0b4e50174d
19 changed files with 63 additions and 66 deletions

7
src/typings.d.ts vendored
View File

@@ -1,12 +1,13 @@
/* eslint @typescript-eslint/no-explicit-any: 0 */ // Semantic adds functions to JQuery in a way that can't be type checked
/* SystemJS module definition */
declare var nodeModule: NodeModule
declare let nodeModule: NodeModule
interface NodeModule {
id: string
}
// @ts-ignore
declare var window: Window
declare var $: any
declare let window: Window
declare let $: any
interface Window {
process: any
require: any