4 lines
224 B
TypeScript
4 lines
224 B
TypeScript
export type Unit = "imperial" | "metric";
|
|
export type PowerOptions = "sleep" | "reboot" | "logout" | "shutdown";
|
|
export type NotificationAnchor = "top" | "top right" | "top left" | "bottom" | "bottom right" | "bottom left";
|