@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
18 lines (17 loc) • 523 B
TypeScript
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>;