convexsol_stage/interfaces/aiml.interface.ts
2025-12-02 11:02:00 +05:30

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[];
}