(child: RNGridRow)
| 106 | } |
| 107 | } |
| 108 | appendInitialChild(child: RNGridRow): void { |
| 109 | this.appendChild(child); |
| 110 | } |
| 111 | appendChild(child: RNGridRow): void { |
| 112 | if (!(child instanceof RNGridRow)) { |
| 113 | throw new Error("GridRow is the only supported child of GridView"); |
nothing calls this directly
no test coverage detected