Files
Homarr/packages/definitions/src/widget.ts
Meier Lukas 8f4897186c feat: add iframe widget (#291)
* feat: add nestjs replacement, remove nestjs

* feat: add iframe widget

* fix: format issue

* fix: format issue

* fix: format issue

* fix: lockfile frozen
2024-04-13 11:58:41 +02:00

9 lines
152 B
TypeScript

export const widgetKinds = [
"clock",
"weather",
"app",
"iframe",
"video",
] as const;
export type WidgetKind = (typeof widgetKinds)[number];