(baseWidth = 1, deltaWidth: number = 3, k: number = 2)
| 9 | |
| 10 | export const lineWidthFactory = |
| 11 | (baseWidth = 1, deltaWidth: number = 3, k: number = 2) => |
| 12 | (node: INode) => |
| 13 | baseWidth + deltaWidth / k ** node.state.depth; |
| 14 | |
| 15 | export const defaultOptions: IMarkmapOptions = { |
| 16 | autoFit: false, |
no outgoing calls
no test coverage detected