1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 08:28:31 +00:00

Initial commit for converting FrankerFaceZ to TypeScript.

This commit is contained in:
SirStendec 2023-11-13 20:47:45 -05:00
parent ba72969c51
commit b9d23accf0
86 changed files with 8673 additions and 5005 deletions

9
types/jsx-global.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
declare namespace JSX {
interface Element extends HTMLElement {}
interface IntrinsicElements {
[elemName: string]: any;
}
}