@bprotsyk/aso-core 2.1.70 → 2.1.71
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/lib/app/app.d.ts +4 -1
- package/package.json +1 -1
- package/src/app/app.ts +4 -1
package/lib/app/app.d.ts
CHANGED
|
@@ -114,7 +114,10 @@ export interface IBannerParams {
|
|
|
114
114
|
imageParam: string;
|
|
115
115
|
linkParam: string;
|
|
116
116
|
showStubOnError?: boolean;
|
|
117
|
-
directType?:
|
|
117
|
+
directType?: {
|
|
118
|
+
enabled: boolean;
|
|
119
|
+
type: EBannerDirectType;
|
|
120
|
+
};
|
|
118
121
|
}
|
|
119
122
|
export interface IRemoveDataParams {
|
|
120
123
|
buttonText: string;
|
package/package.json
CHANGED
package/src/app/app.ts
CHANGED
|
@@ -158,7 +158,10 @@ export interface IBannerParams {
|
|
|
158
158
|
imageParam: string,
|
|
159
159
|
linkParam: string,
|
|
160
160
|
showStubOnError?: boolean,
|
|
161
|
-
directType?:
|
|
161
|
+
directType?: {
|
|
162
|
+
enabled: boolean,
|
|
163
|
+
type: EBannerDirectType
|
|
164
|
+
}
|
|
162
165
|
}
|
|
163
166
|
|
|
164
167
|
export interface IRemoveDataParams {
|