easemob-chat-uikit
Version:
   ![GitHub last c
11 lines (10 loc) • 391 B
TypeScript
import React from 'react';
import { NotificationProps, NotificationItemProps } from './interface';
interface NotificationContainerProps extends NotificationProps {
notifications: (NotificationItemProps & {
id: string;
})[];
onRemove: (id: string) => void;
}
declare const NotificationContainer: React.FC<NotificationContainerProps>;
export default NotificationContainer;