owncast/web/types/chat.ts

11 lines
169 B
TypeScript
Raw Normal View History

export interface MessageType {
author: string;
body: string;
id: string;
key: string;
name: string;
timestamp: string;
type: string;
visible: boolean;
}