(filter: RuntimeRecordCacheFilter = {})
| 31 | } |
| 32 | |
| 33 | list(filter: RuntimeRecordCacheFilter = {}): RuntimeRecord[] { |
| 34 | return [...this.records.values()].filter((runtime) => matchesFilter(runtime, filter)).sort(sortByUpdatedAtDesc) |
| 35 | } |
| 36 | |
| 37 | entries(): Array<[string, RuntimeRecord]> { |
| 38 | return [...this.records.entries()] |
no test coverage detected