Files
Homarr/packages/definitions/src/widget.ts
2024-06-10 21:16:39 +02:00

13 lines
246 B
TypeScript

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