adaptive-expressions
Version:
Common Expression Language
27 lines • 719 B
TypeScript
/**
* @module adaptive-expressions
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { ExpressionEvaluator } from '../expressionEvaluator';
/**
* Returns the index of the first occurrence of a value in an array.
* The zero-based index position of value if that value is found, or -1 if it is not.
*/
export declare class IndexOf extends ExpressionEvaluator {
/**
* Initializes a new instance of the [IndexOf](xref:adaptive-expressions.IndexOf) class.
*/
constructor();
/**
* @private
*/
private static evaluator;
/**
* @private
*/
private static validator;
}
//# sourceMappingURL=indexOf.d.ts.map