UNPKG

morph-it-helper

Version:

Helper functions on an included database derived from morph-it (Free Morphological Lexicon for the Italian Language)

15 lines (14 loc) 281 B
/** * @license * Copyright 2019 Ludan Stoecklé * SPDX-License-Identifier: Apache-2.0 */ export interface Nouns { [key: string]: string; } export interface Adjectives { [key: string]: [string, boolean]; } export interface PastParticiples { [key: string]: string; }