igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
23 lines (22 loc) • 863 B
TypeScript
import { NativeUIComponent } from "./NativeUIComponent";
import { NativeUIInputDisplayType } from "./NativeUIInputDisplayType";
import { Type } from "./type";
import { NativeUIDisplayDensity } from "./NativeUIDisplayDensity";
import { NativeUIInputChangingEventArgs } from "./NativeUIInputChangingEventArgs";
import { FontInfo } from "./FontInfo";
/**
* @hidden
*/
export declare class NativeUIInput extends NativeUIComponent {
static $t: Type;
get ax(): NativeUIInputDisplayType;
set ax(a: NativeUIInputDisplayType);
get au(): NativeUIDisplayDensity;
set au(a: NativeUIDisplayDensity);
get ay(): string;
set ay(a: string);
private av;
get aw(): (sender: any, args: NativeUIInputChangingEventArgs) => void;
set aw(a: (sender: any, args: NativeUIInputChangingEventArgs) => void);
at: FontInfo;
}