diff --git a/examples/web/index.ts b/examples/web/index.ts index e4bff1fc8543e85d815ccbad1fcf215011c95ca1..dc36af2ccd5d4a0329c69de529cb84c047c236b6 100644 --- a/examples/web/index.ts +++ b/examples/web/index.ts @@ -3,6 +3,8 @@ import { startApp } from "./react/app"; import { default as _wasm, GameBoy, PadKey, PpuMode } from "./lib/boytacean.js"; import info from "./package.json"; +declare const require: any; + const PIXEL_UNSET_COLOR = 0x1b1a17ff; const LOGIC_HZ = 600; @@ -48,6 +50,11 @@ enum PixelFormat { RGBA = 4 } +/** + * Top level class that controls the emulator behaviour + * and "joins" all the elements together to bring input/output + * of the associated machine. + */ class Emulator { /** * The Game Boy engine (probably coming from WASM) that diff --git a/examples/web/package.json b/examples/web/package.json index 4adc74a1e5a78cf910b1ace667a9cffc2dc57aa1..a653782ffe17c7947423a4daeaaeaca437cfb8b4 100644 --- a/examples/web/package.json +++ b/examples/web/package.json @@ -17,7 +17,6 @@ "source": "index.ts", "devDependencies": { "@parcel/transformer-typescript-tsc": "^2.6.2", - "@types/node": "^18.0.6", "@types/react": "^18.0.15", "@types/react-dom": "^18.0.6", "parcel": "^2.6.2",