ngx-toasta
Version:
Simple and clean Angular Toast component that shows growl-style notifications and messages for your web app
19 lines (18 loc) • 622 B
TypeScript
/**
* Check and return true if an object is type of string
* @param obj Analyse has to object the string type
* @return result of analysis
*/
export declare function isString(obj: any): boolean;
/**
* Check and return true if an object is type of number
* @param obj Analyse has to object the boolean type
* @return result of analysis
*/
export declare function isNumber(obj: any): boolean;
/**
* Check and return true if an object is type of Function
* @param obj Analyse has to object the function type
* @return result of analysis
*/
export declare function isFunction(obj: any): boolean;