Files
homarr/packages/old-import/src/widgets/definitions/notebook.ts
2026-01-15 21:54:44 +01:00

11 lines
240 B
TypeScript

import type { CommonOldmarrWidgetDefinition } from "./common";
export type OldmarrNotebookDefinition = CommonOldmarrWidgetDefinition<
"notebook",
{
showToolbar: boolean;
allowReadOnlyCheck: boolean;
content: string;
}
>;