UNPKG

vue-toastify

Version:

<p align="center">Simple and dependency-free notification plugin.</p>

7 lines (6 loc) 406 B
import { Status, ToastBody } from './type'; export declare const isBoolean: (value: any) => value is boolean; export declare function isObject<T extends Record<any, any>>(value: any): value is NonNullable<T>; export declare const isBetween: (value: number, min: number, max: number) => boolean; export declare const uuidV4: () => string; export declare const isBody: (value: Status) => value is ToastBody;