igniteui-react-core
Version:
Ignite UI React Core.
34 lines (33 loc) • 1.89 kB
TypeScript
import { INativeUIContainerBridge } from "./INativeUIContainerBridge";
import { Type } from "./type";
import { NativeUIGridHeightType } from "./NativeUIGridHeightType";
import { NativeUIGridWidthType } from "./NativeUIGridWidthType";
import { NativeUIComponent } from "./NativeUIComponent";
/**
* @hidden
*/
export interface INativeUIGridBridge extends INativeUIContainerBridge {
addRowDefinition(a: any, b: number, c: NativeUIGridHeightType, d: number): void;
addRowDefinitionWithMin(a: any, b: number, c: NativeUIGridHeightType, d: number, e: number): void;
updateRowDefinition(a: any, b: number, c: NativeUIGridHeightType, d: number): void;
addColumnDefinition(a: any, b: number, c: NativeUIGridWidthType, d: number): void;
addColumnDefinitionWithMin(a: any, b: number, c: NativeUIGridWidthType, d: number, e: number): void;
updateColumnDefinition(a: any, b: number, c: NativeUIGridWidthType, d: number): void;
updateColumnDefinitionWithMin(a: any, b: number, c: NativeUIGridWidthType, d: number, e: number): void;
insertColumnDefinition(a: any, b: number, c: NativeUIGridWidthType, d: number): void;
insertColumnDefinitionWithMin(a: any, b: number, c: NativeUIGridWidthType, d: number, e: number): void;
setRow(a: any, b: NativeUIComponent, c: number): void;
setColumn(a: any, b: NativeUIComponent, c: number): void;
setColumnSpan(a: any, b: NativeUIComponent, c: number): void;
getRow(a: any, b: NativeUIComponent): number;
getColumn(a: any, b: NativeUIComponent): number;
getColumnSpan(a: any, b: NativeUIComponent): number;
removeRowDefinition(a: any, b: number): void;
removeColumnDefinition(a: any, b: number): void;
getRowDefinitionsCount(a: any): number;
getColumnDefinitionsCount(a: any): number;
}
/**
* @hidden
*/
export declare let INativeUIGridBridge_$type: Type;