| 18 | * Options for the article extraction process. |
| 19 | */ |
| 20 | export interface ParserOptions { |
| 21 | /** Words per minute for time-to-read estimation. Default: 300 */ |
| 22 | wordsPerMinute?: number |
| 23 | /** Max chars for generated description. Default: 210 */ |
| 24 | descriptionTruncateLen?: number |
| 25 | /** Min chars required for description. Default: 180 */ |
| 26 | descriptionLengthThreshold?: number |
| 27 | /** Min chars required for content. Default: 200 */ |
| 28 | contentLengthThreshold?: number |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Proxy configuration for fetching articles. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…