UNPKG

@dapplets/dapplet-extension

Version:
18 lines (17 loc) 523 B
import React from 'react'; import { NotificationStatus } from '../../../../../common/models/notification'; import { StorageRef } from '../../../../../common/types'; export interface NotificationProps { label: string; icon?: StorageRef; title: string; date: any; onClear?: (x: any) => void; href?: string; _id: any; description: any; status?: NotificationStatus; actions?: NotificationAction[]; stateNotify?: any; } export declare const Notification: React.FC<NotificationProps>;