//#region src/extensions/rich-text/rich-text-document.d.ts /** * The options available to customize the `RichTextDocumentOptions` extension. */ type RichTextDocumentOptions = { /** * Indicates whether the document accepts multiple lines of input or only a single line. */ multiline: boolean; }; /** * Custom extension that extends the built-in `Document` extension to define a schema for multiline * or singleline rich-text documents (as opposed to the multiple block nodes by default). */ //#endregion export { type RichTextDocumentOptions }; //# sourceMappingURL=rich-text-document.d.ts.map