mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
Co-authored-by: SeDemal <Tagaishi@hotmail.ch> Co-authored-by: SeDemal <demal.sebastien@bluewin.ch> Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
19 lines
374 B
TypeScript
19 lines
374 B
TypeScript
export const widgetKinds = [
|
|
"clock",
|
|
"weather",
|
|
"app",
|
|
"iframe",
|
|
"video",
|
|
"notebook",
|
|
"dnsHoleSummary",
|
|
"dnsHoleControls",
|
|
"smartHome-entityState",
|
|
"smartHome-executeAutomation",
|
|
"mediaServer",
|
|
"calendar",
|
|
"mediaRequests-requestList",
|
|
"mediaRequests-requestStats",
|
|
"rssFeed",
|
|
] as const;
|
|
export type WidgetKind = (typeof widgetKinds)[number];
|