/** * Generated by orval v8.19.0 🍺 * Do not edit manually. * Webitel API * OpenAPI spec version: 24.04.0 */ import type { FormatBold } from './formatBold.zod'; import type { FormatCodeblock } from './formatCodeblock.zod'; import type { FormatItalic } from './formatItalic.zod'; import type { FormatLink } from './formatLink.zod'; import type { FormatMonospace } from './formatMonospace.zod'; import type { FormatStrikethrough } from './formatStrikethrough.zod'; import type { FormatUnderline } from './formatUnderline.zod'; 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; }