mirror of
https://github.com/owncast/owncast.git
synced 2025-11-02 11:56:57 +08:00
11 lines
169 B
TypeScript
11 lines
169 B
TypeScript
export interface MessageType {
|
|
author: string;
|
|
body: string;
|
|
id: string;
|
|
key: string;
|
|
name: string;
|
|
timestamp: string;
|
|
type: string;
|
|
visible: boolean;
|
|
}
|