mirror of
https://github.com/owncast/owncast.git
synced 2025-10-31 01:56:55 +08:00
9 lines
173 B
TypeScript
9 lines
173 B
TypeScript
import { SocketEvent } from './socket-events';
|
|
|
|
export interface ChatSocialMessage extends SocketEvent {
|
|
title: string;
|
|
body: string;
|
|
image: string;
|
|
link: string;
|
|
}
|