UNPKG

reading-time-estimator

Version:

A medium's like reading time estimator with internationalization support

14 lines (13 loc) 250 B
/** * Localization object shared by all locales */ export type I18n = { /** * Translation for less than a minute */ readonly less: string; /** * Translation for more than a minute */ readonly default: string; };