mirror of
https://github.com/ajnart/homarr.git
synced 2026-03-06 12:21:06 +01:00
* feat: add nestjs replacement, remove nestjs * feat: add iframe widget * fix: format issue * fix: format issue * fix: format issue * fix: lockfile frozen
9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
export const widgetKinds = [
|
|
"clock",
|
|
"weather",
|
|
"app",
|
|
"iframe",
|
|
"video",
|
|
] as const;
|
|
export type WidgetKind = (typeof widgetKinds)[number];
|