Structure type added

This commit is contained in:
VividTruthKeeper 2022-08-20 00:25:08 +05:00
parent 517b8d43b1
commit 6f951dea6b
1 changed files with 16 additions and 0 deletions

16
src/types/structure.ts Normal file
View File

@ -0,0 +1,16 @@
export interface Structure {
id: number;
job: string;
name: string;
email: string;
phone: string;
facebook: string;
img: string;
translations: [
{
model_id: string;
locale: string;
attribute_data: string;
}
];
}