| 17 | |
| 18 | type FormatFn = (line: string) => string; |
| 19 | export interface NoteOptions extends CommonOptions { |
| 20 | format?: FormatFn; |
| 21 | } |
| 22 | |
| 23 | const defaultNoteFormatter = (line: string): string => line; |
| 24 |
nothing calls this directly
no outgoing calls
no test coverage detected