lesgo
Version:
Core framework for lesgo node.js serverless framework.
9 lines (8 loc) • 329 B
TypeScript
/**
* Checks if a given number or string representation of a number is a decimal.
*
* @param number - The number or string representation of a number to check.
* @returns A boolean indicating whether the number is a decimal or not.
*/
declare const isDecimal: (number: number | string) => boolean;
export default isDecimal;