igniteui-react-core
Version:
Ignite UI React Core.
39 lines (38 loc) • 946 B
TypeScript
import { Description } from "./Description";
import { Type } from "./type";
/**
* @hidden
*/
export declare abstract class WebButtonBaseDescription extends Description {
static $t: Type;
protected get_type(): string;
get type(): string;
constructor();
private l;
get displayType(): string;
set displayType(a: string);
private o;
get href(): string;
set href(a: string);
private m;
get download(): string;
set download(a: string);
private q;
get target(): string;
set target(a: string);
private p;
get rel(): string;
set rel(a: string);
private h;
get disabled(): boolean;
set disabled(a: boolean);
private k;
get clickedRef(): string;
set clickedRef(a: string);
private n;
get focusRef(): string;
set focusRef(a: string);
private j;
get blurRef(): string;
set blurRef(a: string);
}