* Returns a presentation string of your `val` object * @param val any potential JavaScript object * @param options Custom settings
(val: unknown, config?: PrettyFormatConfig)
| 356 | * @param options Custom settings |
| 357 | */ |
| 358 | public static format(val: unknown, config?: PrettyFormatConfig): string { |
| 359 | return PrettyFormat.printer(val, config ?? new PrettyFormatConfig(), '', 0, []); |
| 360 | } |
| 361 | } |
| 362 | |
| 363 | import { BarSerializer } from '@coderline/alphatab/generated/model/BarSerializer'; |
no test coverage detected