16 lines
225 B
TypeScript
16 lines
225 B
TypeScript
|
|
export interface ContactsDataType {
|
||
|
|
data: Datum[];
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface Datum {
|
||
|
|
header: string;
|
||
|
|
services: Service[];
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface Service {
|
||
|
|
title: string;
|
||
|
|
phone: string;
|
||
|
|
email: string;
|
||
|
|
web_site: string;
|
||
|
|
}
|