Whether the cell is focused.
()
| 88 | |
| 89 | /** Whether the cell is focused. */ |
| 90 | async isFocused(): Promise<boolean> { |
| 91 | const host = await this.host(); |
| 92 | return host.isFocused(); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | /** Harness for interacting with a standard ngGridRow in tests. */ |