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