@osovitny/anatoly 3.20.42 → 3.20.44
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/index.d.ts
CHANGED
|
@@ -338,8 +338,9 @@ declare class GoServiceBase extends ServiceBase {
|
|
|
338
338
|
protected route: ActivatedRoute;
|
|
339
339
|
protected router: Router;
|
|
340
340
|
private initialized;
|
|
341
|
+
private _currentApp;
|
|
341
342
|
protected isDevMode: boolean;
|
|
342
|
-
protected currentApp: ICurrentApp;
|
|
343
|
+
protected get currentApp(): ICurrentApp;
|
|
343
344
|
constructor(route: ActivatedRoute, router: Router);
|
|
344
345
|
private ensureInitialized;
|
|
345
346
|
navigate(commands: any[], extras?: NavigationExtras, reload?: boolean): void;
|
|
@@ -705,10 +706,11 @@ declare class Message2User {
|
|
|
705
706
|
}
|
|
706
707
|
interface Message2UserConfig {
|
|
707
708
|
type: number;
|
|
708
|
-
image
|
|
709
|
-
color
|
|
710
|
-
title
|
|
709
|
+
image: string;
|
|
710
|
+
color: string;
|
|
711
|
+
title: string;
|
|
711
712
|
message: string;
|
|
713
|
+
go2dashboard: boolean;
|
|
712
714
|
}
|
|
713
715
|
declare class Message2UserService extends BehaviorSubject<Message2User> {
|
|
714
716
|
private configs;
|
|
@@ -1798,11 +1800,11 @@ declare class NoMobileSupportComponent extends ComponentBase {
|
|
|
1798
1800
|
|
|
1799
1801
|
declare class Message2UserComponent extends ComponentBase implements OnInit {
|
|
1800
1802
|
private go;
|
|
1801
|
-
private
|
|
1803
|
+
private mus;
|
|
1802
1804
|
show: boolean;
|
|
1803
1805
|
message: any;
|
|
1804
1806
|
config: any;
|
|
1805
|
-
constructor(go: GoServiceBase,
|
|
1807
|
+
constructor(go: GoServiceBase, mus: Message2UserService);
|
|
1806
1808
|
ngOnInit(): void;
|
|
1807
1809
|
private setDefaults;
|
|
1808
1810
|
private setValues;
|