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

8 lines
233 B
TypeScript

export interface CaseStudiesInterface {
attributes: {
title: string;
techStack: string;
image: { data: { attributes: { url: string; alternativeText: string; width?: number; height?: number } } };
};
}