/** * ## InputRichBlockMathematicalExpression * A block with a mathematical expression in LaTeX format, corresponding to the custom HTML tag . * @see https://core.telegram.org/bots/api#inputrichblockmathematicalexpression */ export type InputRichBlockMathematicalExpression = { /** * Type of the block, always "mathematical_expression" */ type: 'mathematical_expression'; /** * The mathematical expression in LaTeX format */ expression: string; };