feat: aggiunge CLI unificata, build vocabolario e filtro lessicale

This commit is contained in:
2026-04-13 19:04:01 +02:00
parent 0b42c2ecd4
commit 77c7e709b6
24 changed files with 161767 additions and 1 deletions

14
package/dist/index.d.ts vendored Normal file
View File

@@ -0,0 +1,14 @@
/**
* @license
* Copyright 2021 Ludan Stoecklé
* SPDX-License-Identifier: Apache-2.0
*/
export type Genders = 'M' | 'F';
export interface WordInfo {
G: Genders | null;
S?: string | null;
P: string | null;
}
export interface WordsInfo {
[key: string]: WordInfo;
}