mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 12:18:02 +03:00
8 lines
173 B
TypeScript
8 lines
173 B
TypeScript
import { SocketEvent } from './socket-events';
|
|
|
|
export interface ChatSocialMessage extends SocketEvent {
|
|
title: string;
|
|
body: string;
|
|
image: string;
|
|
link: string;
|
|
}
|