UNPKG

adaptive-expressions

Version:
23 lines 720 B
/** * @module adaptive-expressions */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { ComparisonEvaluator } from './comparisonEvaluator'; /** * Check whether the first value is greater than or equal to the second value. Return true when the first value is greater or equal, * or return false if the first value is less. */ export declare class GreaterThanOrEqual extends ComparisonEvaluator { /** * Initializes a new instance of the [GreaterThanOrEqual](xref:adaptive-expressions.GreaterThanOrEqual) class. */ constructor(); /** * @private */ private static func; } //# sourceMappingURL=greaterThanOrEqual.d.ts.map