adaptive-expressions
Version:
Common Expression Language
27 lines • 755 B
TypeScript
/**
* @module adaptive-expressions
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { ExpressionEvaluator } from '../expressionEvaluator';
/**
* Add a property and its value, or name-value pair, to a JSON object, and return the updated object.
* If the object already exists at runtime the function throws an error.
*/
export declare class AddProperty extends ExpressionEvaluator {
/**
* Initializes a new instance of the [AddProperty](xref:adaptive-expressions.AddProperty) class.
*/
constructor();
/**
* @private
*/
private static evaluator;
/**
* @private
*/
private static validator;
}
//# sourceMappingURL=addProperty.d.ts.map