mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-01 18:26:10 +08:00
fix(android): typings fix for native GridLayout (#10791)
I wrongly removed some method definitions in 6dd441d6ba
This PR brings back those missing methods
This commit is contained in:
@ -294,6 +294,8 @@
|
||||
export class GridLayout extends LayoutBase {
|
||||
constructor(context: android.content.Context);
|
||||
|
||||
public addRow(itemSpec: ItemSpec): void;
|
||||
public addColumn(itemSpec: ItemSpec): void;
|
||||
public addRow(value: number, type: org.nativescript.widgets.GridUnitType): void;
|
||||
public addColumn(value: number, type: org.nativescript.widgets.GridUnitType): void;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user