0
owncast/web/interfaces/chat-social-message.model.ts

9 lines
173 B
TypeScript

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