UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

14 lines (13 loc) 557 B
/// <reference types="react" /> import { NotifyProps } from "./notify"; import { closeNotify, openNotify, resetDefaultNotifyOptions, setDefaultNotifyOptions } from "./notify.imperative"; export type { NotifyColor } from "./notify.shared"; interface NotifyInterface { (props: NotifyProps): JSX.Element; open: typeof openNotify; close: typeof closeNotify; setDefaultOptions: typeof setDefaultNotifyOptions; resetDefaultOptions: typeof resetDefaultNotifyOptions; } declare const Notify: NotifyInterface; export default Notify;