easemob-chat-uikit
Version:
   ![GitHub last c
13 lines (12 loc) • 403 B
TypeScript
import React from 'react';
export interface UrlMessageProps {
mediaType: 'website' | 'image' | 'application';
url: string;
title?: string;
description?: string;
favicons?: string[];
images?: string[];
isLoading: boolean;
}
declare const UrlMessage: React.MemoExoticComponent<(props: UrlMessageProps) => import("react/jsx-runtime").JSX.Element | null>;
export { UrlMessage };