Fix all of the playground type errors (#2116)

* Fix several playground errors

* Fix more types

* Remove ts-ignores

* Small fix

* Small fix

* Small changes

* Remove unnecessary dep

* Add katex types

* Small fix
This commit is contained in:
John Flockton
2022-05-10 13:52:35 +01:00
committed by GitHub
parent 7b886c8dc0
commit f6986cff9f
62 changed files with 467 additions and 3060 deletions

12
libdefs/globals.d.ts vendored Normal file
View File

@ -0,0 +1,12 @@
declare module '*.svg' {
const content: any;
export default content;
}
declare module '*.gif' {
const content: any;
export default content;
}
declare module '*.jpg' {
const content: any;
export default content;
}