20 lines
542 B
TypeScript
20 lines
542 B
TypeScript
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
/** Read-only information about the current display surface. */
|
|
interface ScreenNamespace {
|
|
/** Current render-target width in pixels. */
|
|
readonly width: number;
|
|
/** Current render-target height in pixels. */
|
|
readonly height: number;
|
|
/** Aspect ratio: `width / height`. */
|
|
readonly aspect: number;
|
|
}
|
|
|
|
/** Current display / render-target dimensions. */
|
|
declare var Screen: ScreenNamespace;
|