16 lines
290 B
TypeScript
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];
|