7 lines
108 B
TypeScript
7 lines
108 B
TypeScript
export interface Word {
|
|
name: string
|
|
identifier: string
|
|
}
|
|
|
|
export type Words = Record<string, Word>
|