/** * ## Link * Represents an HTTP link. * @see https://core.telegram.org/bots/api#link */ export type Link = { /** * URL of the link */ url: string; };