Files
cruciverba_1/package/dist/index.d.ts

15 lines
284 B
TypeScript

/**
* @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;
}