tgsnake
Version:
Telegram MTProto framework for nodejs.
13 lines (12 loc) • 402 B
TypeScript
import { TLObject } from '../../TL.js';
import { Raw } from '../../../platform.node.js';
import type { Snake } from '../../../Client/index.js';
export declare class Dice extends TLObject {
emoji: string;
value: number;
constructor({ emoji, value, }: {
emoji: string;
value: number;
}, client: Snake);
static parse(client: Snake, dice: Raw.MessageMediaDice): Dice;
}