22 lines
705 B
TypeScript
22 lines
705 B
TypeScript
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*
|
|
* Root type declarations for the Dusk engine built-in JavaScript modules.
|
|
* These globals are injected by the native JerryScript runtime — they are not
|
|
* ES modules and cannot be imported.
|
|
*
|
|
* Reference this file from a jsconfig.json or tsconfig.json to get
|
|
* IntelliSense across all game scripts:
|
|
*
|
|
* { "compilerOptions": { "typeRoots": ["./types"] } }
|
|
*/
|
|
|
|
/// <reference path="./console.d.ts" />
|
|
/// <reference path="./screen.d.ts" />
|
|
/// <reference path="./engine.d.ts" />
|
|
/// <reference path="./input.d.ts" />
|
|
/// <reference path="./system.d.ts" />
|