igniteui-react-core
Version:
Ignite UI React Core.
12 lines (11 loc) • 317 B
TypeScript
import { Base, Type } from "./type";
import { UIElementPropertyId } from "./UIElementPropertyId";
/**
* @hidden
*/
export declare abstract class UIElementPropertyAccessor extends Base {
static $t: Type;
a: UIElementPropertyId;
abstract c(a: any, b: any): void;
abstract b(a: any): any;
}