@osovitny/anatoly 3.21.37 → 3.21.38
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/package.json
CHANGED
|
@@ -187,6 +187,16 @@ declare class SubscribePlanButtonComponent implements OnInit {
|
|
|
187
187
|
static ɵcmp: i0.ɵɵComponentDeclaration<SubscribePlanButtonComponent, "anatoly-billing-subscribe-plan-button", never, { "plan": { "alias": "plan"; "required": false; }; "visiblePlanStatus": { "alias": "visiblePlanStatus"; "required": false; }; "visibleSignup": { "alias": "visibleSignup"; "required": false; }; }, { "planselect": "planselect"; }, never, never, false, never>;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
|
+
declare enum AssetGroupType {
|
|
191
|
+
App = 1,
|
|
192
|
+
Lib = 2,
|
|
193
|
+
External = 3
|
|
194
|
+
}
|
|
195
|
+
declare function formatAssetsUrl(assetGroupType: AssetGroupType, url: string): string;
|
|
196
|
+
declare function formatUrl(url: string): string;
|
|
197
|
+
|
|
198
|
+
declare function getAppCoreSettings(): any;
|
|
199
|
+
declare function resetAppCoreSettings(): void;
|
|
190
200
|
declare function getAppSettingsById(id: any): any;
|
|
191
201
|
declare function getAppSettingsByName(name: any): any;
|
|
192
202
|
interface ICurrentApp {
|
|
@@ -196,16 +206,6 @@ interface ICurrentApp {
|
|
|
196
206
|
oneUrl: string;
|
|
197
207
|
}
|
|
198
208
|
declare function getCurrentApp(): ICurrentApp;
|
|
199
|
-
|
|
200
|
-
declare function getAppCoreSettings(): any;
|
|
201
|
-
declare function resetAppCoreSettings(): void;
|
|
202
|
-
declare enum AssetGroupType {
|
|
203
|
-
App = 1,
|
|
204
|
-
Lib = 2,
|
|
205
|
-
External = 3
|
|
206
|
-
}
|
|
207
|
-
declare function formatAssetsUrl(assetGroupType: AssetGroupType, url: string): string;
|
|
208
|
-
declare function formatUrl(url: string): string;
|
|
209
209
|
declare let AppCoreSettings: any;
|
|
210
210
|
declare let AppVersion: any;
|
|
211
211
|
declare let IsDevMode: boolean;
|