rosaenlg-commons
Version:
Common technical elements for RosaeNLG
13 lines (12 loc) • 369 B
TypeScript
/**
* @license
* Copyright 2019 Ludan Stoecklé
* SPDX-License-Identifier: Apache-2.0
*/
import { LanguageCommon } from './LanguageCommon';
export declare class LanguageCommonItalian extends LanguageCommon {
constructor();
isConsonneImpure(word: string): boolean;
isIFollowedByVowel(word: string): boolean;
startsWithVowel(word: string): boolean;
}