8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
/**
|
|
* Names accounting for regions.
|
|
* Currently English is the only supported language.
|
|
*/
|
|
export interface RegionalName {
|
|
en: string;
|
|
}
|