igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
41 lines (40 loc) • 2.02 kB
TypeScript
import { PanelBridge } from "./PanelBridge";
import { INativeUIGridBridge } from "./INativeUIGridBridge";
import { Type } from "./type";
import { NativeUIGridWidthType } from "./NativeUIGridWidthType";
import { NativeUIComponent } from "./NativeUIComponent";
import { NativeUIBuiltInEvents } from "./NativeUIBuiltInEvents";
import { NativeUIGridHeightType } from "./NativeUIGridHeightType";
import { NativeUIBuiltInProperties } from "./NativeUIBuiltInProperties";
/**
* @hidden
*/
export declare class GridBridge extends PanelBridge implements INativeUIGridBridge {
static $t: Type;
constructor();
private i;
private j;
addColumnDefinition(a: any, b: number, c: NativeUIGridWidthType, d: number): void;
private k;
private l;
addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
addRowDefinition(a: any, b: number, c: NativeUIGridHeightType, d: number): void;
getColumn(a: any, b: NativeUIComponent): number;
getColumnDefinitionsCount(a: any): number;
getRow(a: any, b: NativeUIComponent): number;
getRowDefinitionsCount(a: any): number;
getValue(a: any, b: NativeUIBuiltInProperties): any;
removeColumnDefinition(a: any, b: number): void;
removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
removeRowDefinition(a: any, b: number): void;
setColumn(a: any, b: NativeUIComponent, c: number): void;
setRow(a: any, b: NativeUIComponent, c: number): void;
setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
updateColumnDefinition(a: any, b: number, c: NativeUIGridWidthType, d: number): void;
updateRowDefinition(a: any, b: number, c: NativeUIGridHeightType, d: number): void;
getChildAt(a: any, b: number): NativeUIComponent;
removeChildAt(a: any, b: number): void;
addChild(a: any, b: NativeUIComponent): void;
removeChild(a: any, b: NativeUIComponent): void;
getChildrenCount(a: any): number;
}