mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-12 09:36:59 +01:00
13 lines
246 B
TypeScript
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];
|