adaptive-expressions
Version:
Common Expression Language
27 lines • 733 B
TypeScript
/**
* @module adaptive-expressions
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { ExpressionEvaluator } from '../expressionEvaluator';
/**
* Check whether a string ends with a specific substring. Return true if the substring is found, or return false if not found.
* This function is case-insensitive.
*/
export declare class EndsWith extends ExpressionEvaluator {
/**
* Initializes a new instance of the [EndsWith](xref:adaptive-expressions.EndsWith) class.
*/
constructor();
/**
* @private
*/
private static evaluator;
/**
* @private
*/
private static validator;
}
//# sourceMappingURL=endsWith.d.ts.map