| 8 | } |
| 9 | |
| 10 | export interface DanmakuMessage { |
| 11 | id?: string; |
| 12 | type?: string; |
| 13 | isSystem?: boolean; |
| 14 | uid?: string; |
| 15 | nickname: string; |
| 16 | level?: string; |
| 17 | content: string; |
| 18 | badgeName?: string; |
| 19 | badgeLevel?: string; |
| 20 | color?: string; |
| 21 | room_id?: string; |
| 22 | } |
| 23 | |
| 24 | export interface DanmuOverlayInstance { |
| 25 | sendComment?: (comment: { |
nothing calls this directly
no outgoing calls
no test coverage detected