basic drawing and initialization

This commit is contained in:
Emma
2023-02-07 11:20:07 -07:00
parent 3a12216482
commit c24bd45718
10 changed files with 944 additions and 3 deletions

11
global.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
import { Doodler } from "./canvas.ts";
declare global {
interface Window { doodler: Doodler; }
// interface global {
// doodler: Doodler;
// }
let doodler: Doodler;
}
export{}