mirror of
https://github.com/suitenumerique/meet.git
synced 2026-07-27 12:19:10 +00:00
b962dddbf2
Implement a new reactions system allowing users to send quick emoji responses during video calls. This feature is present in most visio softwares. Particulary this commit: - Add ReactionsButton to control bar with emoji selection - Support floating emoji animations
9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
import { NotificationType } from './NotificationType'
|
|
|
|
export interface NotificationPayload {
|
|
type: NotificationType
|
|
data?: {
|
|
emoji?: string
|
|
}
|
|
}
|