Files
homarr/packages/definitions/src/widget.ts
Manuel dba97a3bd6 feat: add calendar widget (#663)
* feat: add calendar widget

* feat: add artifacts to gitignore
2024-07-02 12:13:13 +02:00

14 lines
260 B
TypeScript

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