UNPKG

czech-inflection

Version:
15 lines (12 loc) 252 B
interface InflectOptions { word: string grammarCase: 1 | 2 | 3 | 4 | 5 | 6 | 7 plural?: boolean animate?: boolean gender?: 'm' | 'f' } /** * Inflect czech word */ declare function inflect(options: InflectOptions): string export = inflect