@twurple/common
Version:
Common functions used by the `@twurple` library family.
16 lines • 469 B
TypeScript
import { rawDataSymbol } from '../DataObject';
import { ChatEmote } from './ChatEmote';
import { type ChatEmoteWithSetData } from './ChatEmoteWithSet.external';
/**
* A chat emote from an emote set.
*
* @inheritDoc
*/
export declare class ChatEmoteWithSet extends ChatEmote {
/** @private */ readonly [rawDataSymbol]: ChatEmoteWithSetData;
/**
* The ID of the emote set.
*/
get setId(): number;
}
//# sourceMappingURL=ChatEmoteWithSet.d.ts.map