mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 01:10:54 +01:00
3 lines
113 B
TypeScript
3 lines
113 B
TypeScript
|
|
export const widgetKinds = ["clock", "weather"] as const;
|
||
|
|
export type WidgetKind = (typeof widgetKinds)[number];
|