You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// This type dance checks if the Observable given could be undefined, if it potentially could be undefined it means that this potentially could return undefined and then call the callback with undefined. [NL]
55
55
source: ObservableType,
56
-
callback: ObserverCallback<SpecificT>,
56
+
callback?: ObserverCallback<SpecificT>,
57
57
controllerAlias?: UmbControllerAlias|null,
58
58
): SpecificR{
59
-
// Fallback to use a hash of the provided method, but only if the alias is undefined.
// This type dance checks if the Observable given could be undefined, if it potentially could be undefined it means that this potentially could return undefined and then call the callback with undefined. [NL]
31
31
source: ObservableType,
32
-
callback: ObserverCallback<SpecificT>,
32
+
callback?: ObserverCallback<SpecificT>,
33
33
controllerAlias?: UmbControllerAlias|null,
34
34
): SpecificR{
35
-
// Fallback to use a hash of the provided method, but only if the alias is undefined.
0 commit comments