30 lines
699 B
TypeScript
30 lines
699 B
TypeScript
interface LogoImageDataInterface {
|
|
data: { attributes: { url: string; alternativeText: string; width?: number; height?: number } };
|
|
}
|
|
|
|
export interface DevelopmentServiceInterface {
|
|
title: string;
|
|
service: {
|
|
heading: string;
|
|
details: string;
|
|
logo: LogoImageDataInterface;
|
|
}[];
|
|
}
|
|
|
|
export interface SecureWebInterface {
|
|
title: string;
|
|
details: string;
|
|
image: LogoImageDataInterface;
|
|
}
|
|
export interface ProcessInterface {
|
|
title: string;
|
|
details: string;
|
|
label: string;
|
|
}
|
|
|
|
export interface AIandMLApiInterface {
|
|
developmentService: DevelopmentServiceInterface;
|
|
secureWeb: SecureWebInterface;
|
|
processData: ProcessInterface[];
|
|
}
|