typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
17 lines (16 loc) • 384 B
TypeScript
import { Location } from './';
/**
* ## BusinessLocation
* Contains information about the location of a Telegram Business account.
* @see https://core.telegram.org/bots/api#businesslocation
*/
export type BusinessLocation = {
/**
* Address of the business
*/
address: string;
/**
* Optional. Location of the business
*/
location?: Location;
};