| 41 | } |
| 42 | |
| 43 | export interface TextLine { |
| 44 | runs: TextRun[] |
| 45 | attrs: { |
| 46 | listType: 'ORDERED' | 'UNORDERED' | 'NONE' |
| 47 | indentation: number |
| 48 | listSpacing: number |
| 49 | paragraphSpacing: number |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | export interface TextBlock { |
| 54 | type: BlockType |
nothing calls this directly
no outgoing calls
no test coverage detected