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

24 lines
450 B
TypeScript

export interface ClientTestimonialInterface {
extraClass?: string;
props: PropsContent;
}
export interface PropsContent {
header: Header;
notes: Notes[];
video: any;
}
export interface Header {
title: string;
titleColor: string;
content: string;
}
export interface Notes {
noteTitle: string;
noteBody: string;
noteImage: any;
noteIcon: string|undefined|null;
noteIconBg: string|undefined|null;
}