1
0
Fork 0
mirror of https://github.com/owncast/owncast.git synced 2025-01-15 04:44:43 +03:00
owncast/web/interfaces/chat-social-message.model.ts

8 lines
173 B
TypeScript

import { SocketEvent } from './socket-events';
export interface ChatSocialMessage extends SocketEvent {
title: string;
body: string;
image: string;
link: string;
}