ylh-pc-ad-sdk 1.26.26 → 1.28.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -53,6 +53,7 @@ interface NativeAdInstance {
53
53
  getIconUrl: () => string;
54
54
  getAdLogoUrl: () => string;
55
55
  getBtnText: () => string;
56
+ getExt2: () => AdExt2Info;
56
57
  getAdPatternType: () => string;
57
58
  hasVideo: () => boolean;
58
59
  isValid: () => boolean;
@@ -115,6 +116,12 @@ interface BindMediaViewPropsManualCustom {
115
116
  renderType: 'manual';
116
117
  eventBinders: EventBinders;
117
118
  }
119
+ interface AdExt2Info {
120
+ ad_info?: {
121
+ crid?: number;
122
+ [key: string]: unknown;
123
+ };
124
+ }
118
125
 
119
126
  declare class GDTAdSDK {
120
127
  private static instance;