UNPKG

@commercetools-frontend/react-notifications

Version:
16 lines (15 loc) 413 B
import type { TAppNotificationDomain, TAppNotificationKind } from '@commercetools-frontend/constants'; type Props = { domain: TAppNotificationDomain; kind: TAppNotificationKind; text?: string; meta?: { [key: string]: unknown; }; dismissAfter?: number; }; declare const Notifier: { ({ domain, kind, ...props }: Props): null; displayName: string; }; export default Notifier;