8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
export interface CaseStudiesInterface {
|
|
attributes: {
|
|
title: string;
|
|
techStack: string;
|
|
image: { data: { attributes: { url: string; alternativeText: string; width?: number; height?: number } } };
|
|
};
|
|
}
|