| 86 | } |
| 87 | |
| 88 | export interface PricingConfig { |
| 89 | sectionId: string; |
| 90 | backgroundColor: string; |
| 91 | header: { |
| 92 | title: string; |
| 93 | titleClass: string; |
| 94 | heading: string; |
| 95 | headingClass: string; |
| 96 | offer: { |
| 97 | text: string; |
| 98 | textClass: string; |
| 99 | highlighted_text: string; |
| 100 | }; |
| 101 | }; |
| 102 | plans: { |
| 103 | name: string; |
| 104 | originalPrice: string; |
| 105 | discountedPrice: string; |
| 106 | currency: string; |
| 107 | popular: boolean; |
| 108 | features: { [key: string]: Feature }; |
| 109 | buttonText: string; |
| 110 | btnLink: string; |
| 111 | buttonClass: string; |
| 112 | note: string; |
| 113 | noteClass: string; |
| 114 | badge?: { |
| 115 | text: string; |
| 116 | badgeClass: string; |
| 117 | }; |
| 118 | }[]; |
| 119 | testimonial: { |
| 120 | text: string; |
| 121 | author: string; |
| 122 | badge: string; |
| 123 | badgeClass: string; |
| 124 | containerClass: string; |
| 125 | }; |
| 126 | } |
| 127 | |
| 128 | export interface TestimonialsGridConfig { |
| 129 | tweetLink: string | null; |
nothing calls this directly
no outgoing calls
no test coverage detected