igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
20 lines (19 loc) • 784 B
TypeScript
import { NativeUIComponent } from "./NativeUIComponent";
import { NativeUIComponentBuiltInType } from "./NativeUIComponentBuiltInType";
import { NativeUIDisplayDensity } from "./NativeUIDisplayDensity";
import { Type } from "./type";
import { NativeUIButtonClickedEventArgs } from "./NativeUIButtonClickedEventArgs";
/**
* @hidden
*/
export declare class NativeUIButton extends NativeUIComponent {
static $t: Type;
protected get_c(): NativeUIComponentBuiltInType;
get av(): NativeUIDisplayDensity;
set av(a: NativeUIDisplayDensity);
get aw(): string;
set aw(a: string);
private at;
get au(): (sender: any, args: NativeUIButtonClickedEventArgs) => void;
set au(a: (sender: any, args: NativeUIButtonClickedEventArgs) => void);
}