30 lines
599 B
TypeScript
30 lines
599 B
TypeScript
import { Notes } from "@/interfaces/clientTestimonial"
|
|
|
|
export interface DevelopmentFeatureInterface {
|
|
extractClass?: string;
|
|
props: PropsContent;
|
|
}
|
|
|
|
export interface PropsContent {
|
|
header: Header;
|
|
notes: Notes[];
|
|
footer: Footer;
|
|
}
|
|
|
|
export interface Header {
|
|
title: string;
|
|
titleColor: string;
|
|
content: string;
|
|
background:string|undefined|null;
|
|
backgroundImage:any;
|
|
}
|
|
|
|
export interface Footer{
|
|
id:number,
|
|
contentBody:string | undefined | null,
|
|
buttonText: string|undefined|null,
|
|
backgroundImage: any,
|
|
background: string|null|undefined,
|
|
}
|
|
|