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:
farfromrefuge
2025-09-05 19:27:59 +02:00
committed by Nathan Walker
parent 1edb4461ea
commit 2801455f38

View File

@@ -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;