Files
homarr/packages/definitions/src/widget.ts
2024-07-27 18:11:29 +02:00

16 lines
290 B
TypeScript

export const widgetKinds = [
"clock",
"weather",
"app",
"iframe",
"video",
"notebook",
"dnsHoleSummary",
"smartHome-entityState",
"smartHome-executeAutomation",
"mediaServer",
"calendar",
"rssFeed",
] as const;
export type WidgetKind = (typeof widgetKinds)[number];