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