tgsnake
Version:
Telegram MTProto framework for nodejs.
17 lines (16 loc) • 657 B
TypeScript
import { TLObject } from '../TL.js';
import { Raw } from '../../platform.node.js';
import type { Snake } from '../../Client/index.js';
export declare class ChatPhoto extends TLObject {
smallFileId: string;
smallUniqueId: string;
bigFileId: string;
bigUniqueId: string;
constructor({ smallFileId, smallUniqueId, bigFileId, bigUniqueId, }: {
smallFileId: string;
smallUniqueId: string;
bigFileId: string;
bigUniqueId: string;
}, client: Snake);
static parse(client: Snake, chatPhoto?: Raw.TypeChatPhoto | Raw.TypeUserProfilePhoto, chatId?: bigint, chatAccessHash?: bigint): ChatPhoto | undefined;
}