Skip to content

Commit 1a3a117

Browse files
clydinhansl
authored andcommitted
refactor(@angular-devkit/core): adjust rxjs type usage
Required for upcoming upgraded to rxjs 6.3
1 parent b19a348 commit 1a3a117

File tree

1 file changed

+1
-1
lines changed
  • packages/angular_devkit/core/src/json/schema

1 file changed

+1
-1
lines changed

packages/angular_devkit/core/src/json/schema/visitor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function _visitJsonRecursive<ContextT>(
8686
}),
8787
ignoreElements(),
8888
),
89-
observableOf(value),
89+
observableOf<JsonValue>(value),
9090
);
9191
} else if (typeof value == 'object' && value !== null) {
9292
return concat(

0 commit comments

Comments
 (0)