gamebench-ng-toasty
Version:
Angular2 Toasty component shows growl-style alerts and messages for your web app - now with more clicking!
19 lines (18 loc) • 604 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;