11 lines
165 B
TypeScript
11 lines
165 B
TypeScript
export interface LangObject {
|
|
[key: string]: string;
|
|
}
|
|
|
|
export interface LangListItem {
|
|
lang: string;
|
|
value: string;
|
|
}
|
|
|
|
export type LangList = LangListItem[];
|