UNPKG

toastmaker

Version:

ToastMaker is a light javascript library for showing toast notifications on web page

11 lines (10 loc) 304 B
declare module 'toastmaker' { interface Options { styles?: object; classList?: string[]; align?: 'left' | 'center' | 'right'; valign?: 'top' | 'bottom'; } function toastmaker(text: string, timeout?: number, options?: Options): void; export = toastmaker; }