igniteui-react-core
Version:
Ignite UI React Core.
21 lines (20 loc) • 488 B
TypeScript
import { Base, Type } from "./type";
import { PropertyPath } from "./PropertyPath";
/**
* @hidden
*/
export declare class Binding extends Base {
static $t: Type;
constructor(a: number);
constructor(a: number, b: string);
constructor(a: number, ..._rest: any[]);
c: any;
get d(): any;
set d(a: any);
e: PropertyPath;
get f(): PropertyPath;
set f(a: PropertyPath);
a: boolean;
get b(): boolean;
set b(a: boolean);
}