(value: string)
| 649 | } |
| 650 | |
| 651 | private parseCellKey(value: string): [number, number] { |
| 652 | const [gx, gy] = value.split(",").map(Number); |
| 653 | return [gx, gy]; |
| 654 | } |
| 655 | |
| 656 | private getInsetBounds(location: LocationRect): Pick<LocationRect, "x" | "y" | "width" | "height"> { |
| 657 | if (!this.isPinnedLocation(location.id)) { |
no outgoing calls
no test coverage detected