UNPKG

@erkanarslan/turkish-inflection

Version:
10 lines (9 loc) 458 B
export { addLenitionExceptions } from "./data"; export declare function inflect(text: string, interpolation: Dict): string; export declare function inflect(text: string, suffix: string): string; export declare function inflect(text: string): string; export declare function inflectText(text: string, interpolation?: Dict): string; export declare function inflectWord(word: string, suffix: string): string; declare type Dict = { [key: string]: string; };