Files
horse/zenno/src/lib/regional-name.ts
2026-03-31 12:08:36 -04:00

8 lines
141 B
TypeScript

/**
* Names accounting for regions.
* Currently English is the only supported language.
*/
export interface RegionalName {
en: string;
}