* Gets a list of harnesses representing the items in this list. * @param filters Optional filters used to narrow which harnesses are included * @return The list of items matching the given filters.
(filters?: F)
| 45 | * @return The list of items matching the given filters. |
| 46 | */ |
| 47 | async getItems(filters?: F): Promise<C[]> { |
| 48 | return this.locatorForAll(this._itemHarness.with(filters))(); |
| 49 | } |
| 50 | |
| 51 | /** |
| 52 | * Gets a list of `ListSection` representing the list items grouped by subheaders. If the list has |
nothing calls this directly
no test coverage detected