(doc: Doc)
| 57 | ); |
| 58 | |
| 59 | export function docToString(doc: Doc) { |
| 60 | const { text, meta } = doc; |
| 61 | return [text, newDelimiters, JSON.stringify(meta), newDelimiters].join("\n"); |
| 62 | } |
| 63 | |
| 64 | type ParseErrorStore = { |
| 65 | error: string; |
no outgoing calls
no test coverage detected