/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { FormatBold } from './formatBold'; import type { FormatCodeblock } from './formatCodeblock'; import type { FormatItalic } from './formatItalic'; import type { FormatLink } from './formatLink'; import type { FormatMonospace } from './formatMonospace'; import type { FormatStrikethrough } from './formatStrikethrough'; import type { FormatUnderline } from './formatUnderline'; export interface CommentFormat { bold?: FormatBold; codeblock?: FormatCodeblock; italic?: FormatItalic; /** Length text runes count. */ length?: number; link?: FormatLink; monospace?: FormatMonospace; /** Offset text runes count. */ offset?: number; strikethrough?: FormatStrikethrough; underline?: FormatUnderline; }