UNPKG

agora-meeting-sdk

Version:

For publishing npm package agora-metting-sdk (Web). Get more information from https://docs.agora.io

10 lines (9 loc) 406 B
import { FC } from 'react'; import { NotifyMessage } from '../../../../../../../agora-meeting-core/src'; import { BaseProps } from '../../../../../../../agora-meeting-ui/src/components/interface/base-props'; import './notify.css'; export interface NotifyItemProps extends BaseProps, NotifyMessage { showTime?: boolean; btnCountdown?: number; } export declare const NotifyItem: FC<NotifyItemProps>;