UNPKG

site-metadata-extractor

Version:
8 lines (7 loc) 197 B
interface StopWords { stopWordCount: number; stopWords: string[]; wordCount: number; } declare const stopwords: (content: string, lang?: string) => StopWords; export default stopwords;