UNPKG

@rviseui/notifications

Version:

Notification system based on Rvise components

15 lines 637 B
import React from 'react'; import { DefaultProps } from '@rviseui/core'; import { NotificationProps } from '../types'; export interface NotificationContainerProps extends DefaultProps { notification: NotificationProps; onHide(id: string): void; autoClose: false | number; innerRef: React.ForwardedRef<HTMLDivElement>; } declare function NotificationContainer({ notification, autoClose, onHide, innerRef, ...others }: NotificationContainerProps): JSX.Element; declare namespace NotificationContainer { var displayName: string; } export default NotificationContainer; //# sourceMappingURL=NotificationContainer.d.ts.map