export type GiftMessagePayload = {
    stickerName: string
    count: number
    unitPrice: number
    totalPrice: number
    recipientUserId: string
    recipientName: string
    recipientDisplayId?: string
    image?: string
    lottieUrl?: string
}

export type SendGiftWsPayload = {
    type: 'send_gift'
    stickerName: string
    recipientUserId: string
    count: number
}
