UNPKG

estimated-reading-time

Version:

Calculate the estimated reading time of a given text (plain text or HTML)

5 lines (4 loc) 236 B
import { Options } from './options.js'; import { TextFormat } from './text-format.js'; import { Result } from './result.js'; export declare function estimatedReadingTime(text: string, textFormat: TextFormat, options?: Options): Result;