7 lines
87 B
TypeScript
7 lines
87 B
TypeScript
interface TeamElement {
|
|
id: number;
|
|
name: {
|
|
en: string;
|
|
ja: string;
|
|
};
|
|
}
|