From 68ea6830330fe639200cdced5554cf651977fb4d Mon Sep 17 00:00:00 2001 From: VividTruthKeeper Date: Fri, 19 Aug 2022 23:27:35 +0500 Subject: [PATCH] about type --- src/types/about.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/types/about.ts diff --git a/src/types/about.ts b/src/types/about.ts new file mode 100644 index 0000000..eb79cf8 --- /dev/null +++ b/src/types/about.ts @@ -0,0 +1,15 @@ +export interface About { + id: number; + header: string; + txt: string; + img: string; + tournment_title: string; + tournment_number: number; + organisation_title: string; + organisation_number: number; + graduate_title: string; + graduate_number: number; + places_title: string; + places_number: number; + translation: [{ model_id: string; locale: string; attribute_date: string }]; +}