UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

14 lines (13 loc) 315 B
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;