LasTres/js-src/word.ts

7 lines
108 B
TypeScript
Raw Normal View History

2023-07-13 10:28:24 +02:00
export interface Word {
name: string
identifier: string
}
export type Words = Record<string, Word>