adaptive-expressions
Version:
Common Expression Language
22 lines • 695 B
TypeScript
/**
* @module adaptive-expressions
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { ExpressionEvaluator } from '../expressionEvaluator';
/**
* Return true if a given input is an integer number. Due to the alignment between C# and JavaScript, a number with a zero residue of its modulo 1 will be treated as an integer number.
*/
export declare class IsInteger extends ExpressionEvaluator {
/**
* Initializes a new instance of the [IsInteger](xref:adaptive-expressions.IsInteger) class.
*/
constructor();
/**
* @private
*/
private static evaluator;
}
//# sourceMappingURL=isInteger.d.ts.map