@mr-hope/vuepress-plugin-reading-time
Version:
Reading time plugin for vuepress
17 lines (13 loc) • 351 B
TypeScript
import type { ReadingTime } from "./extends";
import type { ReadingTimeLocaleConfig } from "./locales";
declare module "@mr-hope/vuepress-types/types/page" {
interface PageComputed {
readingTime: ReadingTime;
}
interface Page {
readingTime: ReadingTime;
}
}
declare global {
const READING_TIME_LOCALES: ReadingTimeLocaleConfig;
}