| 17 | * Interface that defines the methods for loading and splitting documents. |
| 18 | */ |
| 19 | export interface DocumentLoader { |
| 20 | load(): Promise<Document[]> |
| 21 | } |
| 22 | |
| 23 | /** |
| 24 | * Abstract class that provides a default implementation for the |
no outgoing calls
no test coverage detected