UNPKG

@krowdy-ui/core

Version:

React components that implement Google's Material Design.

14 lines (11 loc) 223 B
type INotify = ( message: string, options?: Partial<{ time: number }>, ) => void export interface Notify { success: INotify warning: INotify error: INotify } declare const notify: Notify; export default notify;