UNPKG

rc-toastr

Version:

A fully customized reactJs toasting library

8 lines (7 loc) 213 B
export declare type Variant = 'success' | 'error' | 'warning' | 'info' | 'default' | 'loading'; export declare type Toast = { id: number; message: string; type: Variant; createdAt: Date; };