UNPKG

adaptive-expressions

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