@osovitny/anatoly 3.20.43 → 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
|
@@ -706,10 +706,11 @@ declare class Message2User {
|
|
|
706
706
|
}
|
|
707
707
|
interface Message2UserConfig {
|
|
708
708
|
type: number;
|
|
709
|
-
image
|
|
710
|
-
color
|
|
711
|
-
title
|
|
709
|
+
image: string;
|
|
710
|
+
color: string;
|
|
711
|
+
title: string;
|
|
712
712
|
message: string;
|
|
713
|
+
go2dashboard: boolean;
|
|
713
714
|
}
|
|
714
715
|
declare class Message2UserService extends BehaviorSubject<Message2User> {
|
|
715
716
|
private configs;
|
|
@@ -1799,11 +1800,11 @@ declare class NoMobileSupportComponent extends ComponentBase {
|
|
|
1799
1800
|
|
|
1800
1801
|
declare class Message2UserComponent extends ComponentBase implements OnInit {
|
|
1801
1802
|
private go;
|
|
1802
|
-
private
|
|
1803
|
+
private mus;
|
|
1803
1804
|
show: boolean;
|
|
1804
1805
|
message: any;
|
|
1805
1806
|
config: any;
|
|
1806
|
-
constructor(go: GoServiceBase,
|
|
1807
|
+
constructor(go: GoServiceBase, mus: Message2UserService);
|
|
1807
1808
|
ngOnInit(): void;
|
|
1808
1809
|
private setDefaults;
|
|
1809
1810
|
private setValues;
|