| 330 | }; |
| 331 | |
| 332 | export interface Ad { |
| 333 | pixel?: string[]; |
| 334 | source: string; |
| 335 | company: string; |
| 336 | link: string; |
| 337 | description: string; |
| 338 | image: string; |
| 339 | placeholder?: string; |
| 340 | referralLink?: string; |
| 341 | providerId?: string; |
| 342 | renderTracked?: boolean; |
| 343 | impressionStatus?: number; |
| 344 | tagLine?: string; |
| 345 | backgroundColor?: string; |
| 346 | data?: { post?: Post; source?: Squad }; |
| 347 | generationId?: string; |
| 348 | matchingTags?: string[]; |
| 349 | adDomain?: string; |
| 350 | companyLogo?: string; |
| 351 | callToAction?: string; |
| 352 | tags?: AdMeasurementTag[]; |
| 353 | } |
| 354 | |
| 355 | export interface AdMeasurementTag { |
| 356 | markup: string; |
nothing calls this directly
no outgoing calls
no test coverage detected