UNPKG

love-typescript-definitions

Version:
13 lines (12 loc) 260 B
declare module "love.system" { /** * The basic state of the system's power supply. * @link [PowerState](https://love2d.org/wiki/PowerState) */ type PowerState = | "unknown" | "battery" | "nobattery" | "charging" | "charged"; }