| 313 | }; |
| 314 | |
| 315 | export interface Ad { |
| 316 | pixel?: string[]; |
| 317 | source: string; |
| 318 | company: string; |
| 319 | link: string; |
| 320 | description: string; |
| 321 | image: string; |
| 322 | placeholder?: string; |
| 323 | referralLink?: string; |
| 324 | providerId?: string; |
| 325 | renderTracked?: boolean; |
| 326 | impressionStatus?: number; |
| 327 | tagLine?: string; |
| 328 | backgroundColor?: string; |
| 329 | data?: { post?: Post; source?: Squad }; |
| 330 | generationId?: string; |
| 331 | matchingTags?: string[]; |
| 332 | adDomain?: string; |
| 333 | companyLogo?: string; |
| 334 | callToAction?: string; |
| 335 | } |
| 336 | |
| 337 | export type ReadHistoryPost = Pick< |
| 338 | Post, |
nothing calls this directly
no outgoing calls
no test coverage detected