mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
11 lines
640 B
TypeScript
11 lines
640 B
TypeScript
import { Id } from '../types';
|
|
export declare function isNum(v: any): v is Number;
|
|
export declare function isBool(v: any): v is Boolean;
|
|
export declare function isStr(v: any): v is String;
|
|
export declare function isFn(v: any): v is Function;
|
|
export declare function parseClassName(v: any): any;
|
|
export declare function isToastIdValid(toastId?: Id): string | number | true | undefined;
|
|
export declare function getAutoCloseDelay(toastAutoClose?: false | number, containerAutoClose?: false | number): number | false | undefined;
|
|
export declare const canUseDom: boolean;
|
|
export declare function canBeRendered<T>(content: T): boolean;
|