turkmen-expo/lib/types/Contacts.type.ts

16 lines
225 B
TypeScript
Raw Normal View History

2025-10-12 17:42:17 +00:00
export interface ContactsDataType {
data: Datum[];
}
export interface Datum {
header: string;
services: Service[];
}
export interface Service {
title: string;
phone: string;
email: string;
web_site: string;
}