14 lines
260 B
TypeScript
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];
|