UNPKG

spk-toast-test

Version:

A light-weight react toast component built for mobile web app

16 lines (15 loc) 279 B
export declare enum Type { Info = "info", Success = "success", Fail = "fail", Loading = "loading" } export declare enum Animation { In = "in", Out = "out" } export interface Option { content: string; duration?: number; onClose?: () => void; }