adaptive-expressions
Version:
Common Expression Language
24 lines • 818 B
TypeScript
/**
* @module adaptive-expressions
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { Expression } from '../expression';
import { StringExpression } from '../expressionProperties';
declare type Input = string | Expression;
/**
* `string` to json [StringExpression](xref:adaptive-expressions.StringExpression) converter.
*/
export declare class StringExpressionConverter {
/**
* Converts a string into an [StringExpression](xref:adaptive-expressions.StringExpression).
*
* @param value `string` to convert.
* @returns The [StringExpression](xref:adaptive-expressions.StringExpression).
*/
convert(value: Input | StringExpression): StringExpression;
}
export {};
//# sourceMappingURL=stringExpressionConverter.d.ts.map