Table of Contents

**@arolariu/website**


@arolariu/website / types / ScreenKeys

Type Alias: ScreenKeys

ScreenKeys = keyof globalThis.Screen

Defined in: types/index.ts:456

Extracts all property keys from the browser's Screen API.

Remarks

Provides type-safe access to Screen properties like:

  • width: Screen width in pixels
  • height: Screen height in pixels
  • availWidth: Available width (excluding taskbars)
  • availHeight: Available height
  • colorDepth: Bits per pixel
  • pixelDepth: Color resolution depth

Usage Context: Used in responsive design decisions and device analytics.

See