improve file structure + add TSX/JSX support
All checks were successful
/ test (push) Successful in 14s

This commit is contained in:
Soph :3 2024-07-23 10:12:54 +03:00
parent 013c7cef7f
commit a7aaff537f
Signed by: sophie
GPG key ID: EDA5D222A0C270F2
13 changed files with 67 additions and 48 deletions

3
global.d.ts vendored
View file

@ -8,5 +8,8 @@ export as namespace p5;
declare global {
interface Window {
p5: typeof P5,
setup: () => void,
preload: () => void,
draw: () => void
}
}