initial push

This commit is contained in:
yourfriendoss 2024-04-26 19:38:08 +03:00
parent 1494daaf68
commit f641a29bd8
11 changed files with 703 additions and 11 deletions

12
global.d.ts vendored Normal file
View file

@ -0,0 +1,12 @@
import P5 from "p5"
import * as p5Sound from 'p5/lib/addons/p5.sound'
import * as p5Global from 'p5/global'
export = P5;
export as namespace p5;
declare global {
interface Window {
p5: typeof P5,
}
}