/** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * The testimonial quote */ export type Quote = string; /** * The style of the quote signs */ export type StyleOfTheQuoteSigns = "normal" | "large" | "none"; /** * The name of the quote author */ export type Name = string; /** * The title of the quote author */ export type Title = string; /** * The image to display with the testimonial */ export type Source = string; /** * The alt text of the image file */ export type AltText = string; /** * The rating of the testimonial, from 1 to 5 */ export type Rating = number; /** * Testimonial entry of Testimonials component */ export interface TestimonialProps { quote: Quote; quoteSigns?: StyleOfTheQuoteSigns; name: Name; title?: Title; image: { src?: Source; alt?: AltText; }; rating?: Rating; }