typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
16 lines (15 loc) • 402 B
TypeScript
/**
* ## ChatLocation
* Represents a location to which a chat is connected.
* @see https://core.telegram.org/bots/api#chatlocation
*/
export type ChatLocation = {
/**
* The location to which the supergroup is connected. Can't be a live location.
*/
location: Location;
/**
* Location address; 1-64 characters, as defined by the chat owner
*/
address: string;
};