| 532 | } & SeriesGroup; |
| 533 | |
| 534 | export interface ScaleData { |
| 535 | limit: ValueEdge; |
| 536 | stepSize: number; |
| 537 | stepCount: number; |
| 538 | sizeRatio?: number; |
| 539 | positionRatio?: number; |
| 540 | } |
| 541 | |
| 542 | export type FunctionPropertyNames<T> = { |
| 543 | [K in keyof T]: T[K] extends Function ? K : never; |
nothing calls this directly
no outgoing calls
no test coverage detected