(json: any)
| 8 | |
| 9 | export const YRange = { |
| 10 | fromJSON(json: any) { |
| 11 | return createYRange( |
| 12 | Y.createRelativePositionFromJSON(json.yanchor), |
| 13 | Y.createRelativePositionFromJSON(json.yhead), |
| 14 | ) |
| 15 | }, |
| 16 | } |
| 17 | |
| 18 | export const createYRange = (yanchor: Y.RelativePosition, yhead: Y.RelativePosition) => { |
nothing calls this directly
no test coverage detected
searching dependent graphs…