typescript-telegram-bot-api
Version:
Telegram Bot API wrapper for Node.js written in TypeScript
17 lines (16 loc) • 416 B
TypeScript
import { PhotoSize } from './';
/**
* ## UserProfilePhotos
* This object represent a user's profile pictures.
* @see https://core.telegram.org/bots/api#userprofilephotos
*/
export type UserProfilePhotos = {
/**
* Total number of profile pictures the target user has
*/
total_count: number;
/**
* Requested profile pictures (in up to 4 sizes each)
*/
photos: PhotoSize[][];
};