diff --git a/src/types/structure.ts b/src/types/structure.ts new file mode 100644 index 0000000..cee4748 --- /dev/null +++ b/src/types/structure.ts @@ -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; + } + ]; +}