| 7 | */ |
| 8 | export declare function stringToLines(data: string, param: ParseRuntime): StringToLinesResult; |
| 9 | export interface StringToLinesResult { |
| 10 | lines: Fileline[]; |
| 11 | /** |
| 12 | * last line which could be incomplete line. |
| 13 | */ |
| 14 | partial: string; |
| 15 | } |
| 16 | export type Fileline = string; |
nothing calls this directly
no outgoing calls
no test coverage detected