(text: string, color?: TooltipLine['color'], bold?: boolean)
| 1 | import type { StructuredTooltip, TooltipLine } from '../../../types'; |
| 2 | |
| 3 | export const line = (text: string, color?: TooltipLine['color'], bold?: boolean): TooltipLine => ({ text, color, bold }); |
| 4 | |
| 5 | export const buildStructured = ( |
| 6 | trendValue: string, |
no outgoing calls
no test coverage detected