mirror of
https://github.com/ajnart/homarr.git
synced 2026-05-05 12:15:48 +02:00
* feat: add widget definition system * fix: wrong typecheck command in turbo generator * chore: fix formatting * feat: add widget preview page * chore: fix formatting and type errors * chore: fix from widget edit modal and remove some never casts * chore: address pull request feedback
6 lines
106 B
TypeScript
6 lines
106 B
TypeScript
import type { WidgetSort } from ".";
|
|
|
|
export type WidgetImportRecord = {
|
|
[K in WidgetSort]: unknown;
|
|
};
|