@gpa-gemstone/helper-functions
Version:
Helper Functions for gpa-gemstone packages
8 lines (7 loc) • 302 B
TypeScript
/**
* This function checks if any value is a number, returning true or false
* @param value: value is the input passed through the IsNumber function
* @returns Function will return true if value is an integer, false otherwise
*/
declare function IsNumber(value: any): boolean;
export { IsNumber };