Interface FaceElem

表情

interface FaceElem {
    big?: boolean;
    id: number;
    stickerId?: string;
    stickerType?: number;
    text?: string;
    type: "face" | "sface";
}

Properties

big?: boolean

超级表情

id: number

face为0~348,sface不明

stickerId?: string

stickerId

stickerType?: number

stickerType

text?: string

表情说明,接收消息时有效

type: "face" | "sface"