igniteui-react-core
Version:
Ignite UI React Core.
14 lines (13 loc) • 315 B
TypeScript
import { Type } from "./type";
/**
* @hidden
*/
export interface IFilterExpressionEnvironment {
hasVariable(a: string): boolean;
getVariableValue(a: string): any;
setVariableValue(a: string, b: any): void;
}
/**
* @hidden
*/
export declare let IFilterExpressionEnvironment_$type: Type;