/** * ## InputRichBlockAnchor * A block with an anchor, corresponding to the HTML tag with the attribute name. * @see https://core.telegram.org/bots/api#inputrichblockanchor */ export type InputRichBlockAnchor = { /** * Type of the block, always "anchor" */ type: 'anchor'; /** * The name of the anchor */ name: string; };