//#region src/extensions/plain-text/plain-text-document.d.ts /** * The options available to customize the `PlainTextDocument` extension. */ type PlainTextDocumentOptions = { /** * 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 plain-text documents (as opposed to the multiple block nodes by default). */ //#endregion export { type PlainTextDocumentOptions }; //# sourceMappingURL=plain-text-document.d.ts.map