| 1 | import type { AppError } from '../utils/errors' |
| 2 | |
| 3 | export interface Page { |
| 4 | index: number |
| 5 | type: 'cover' | 'content' | 'summary' |
| 6 | content: string |
| 7 | } |
| 8 | |
| 9 | export interface OutlineResponse { |
| 10 | success: boolean |
nothing calls this directly
no outgoing calls
no test coverage detected