(id: string | null, overrides: ReadonlyMap<string, string>)
| 739 | }; |
| 740 | |
| 741 | const mapId = (id: string | null, overrides: ReadonlyMap<string, string>): string | null => |
| 742 | id == null ? null : (overrides.get(id) ?? id); |
| 743 | |
| 744 | const mapItemIds = ( |
| 745 | ids: Record<string, string>, |