(
rawLines: string,
loc: NodeLocation,
opts: Options = {},
)
| 7 | export type { Options }; |
| 8 | |
| 9 | export function codeFrameColumns( |
| 10 | rawLines: string, |
| 11 | loc: NodeLocation, |
| 12 | opts: Options = {}, |
| 13 | ): string { |
| 14 | return _codeFrameColumns(rawLines, loc, opts); |
| 15 | } |
| 16 | |
| 17 | export function highlight(code: string) { |
| 18 | return code; |
nothing calls this directly
no test coverage detected