UNPKG

lao-grammar-checker

Version:

A utility to check grammar and split Lao language sentences into individual words

8 lines (7 loc) 277 B
/** * Checks Lao words for basic grammatical structure violations. * * @param words - An array of Lao words (presumably segmented). * @returns An array of words that violate the defined grammar rules. */ export declare function laoGrammarCheck(words: string[]): string[];