24 lines
450 B
TypeScript
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;
|
|
} |