Skip to content

Commit

Permalink
chore: copy schematics
Browse files Browse the repository at this point in the history
  • Loading branch information
timdeschryver committed May 31, 2019
1 parent 0318924 commit 4d1128c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion modules/data/schematics-core/utility/visit-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function visitTSSourceFiles<Result = void>(
visitor: (
sourceFile: ts.SourceFile,
tree: Tree,
result: Result | undefined
result?: Result
) => Result | undefined
): Result | undefined {
let result: Result | undefined = undefined;
Expand Down
2 changes: 1 addition & 1 deletion modules/effects/schematics-core/utility/visit-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function visitTSSourceFiles<Result = void>(
visitor: (
sourceFile: ts.SourceFile,
tree: Tree,
result: Result | undefined
result?: Result
) => Result | undefined
): Result | undefined {
let result: Result | undefined = undefined;
Expand Down
2 changes: 1 addition & 1 deletion modules/entity/schematics-core/utility/visit-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function visitTSSourceFiles<Result = void>(
visitor: (
sourceFile: ts.SourceFile,
tree: Tree,
result: Result | undefined
result?: Result
) => Result | undefined
): Result | undefined {
let result: Result | undefined = undefined;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function visitTSSourceFiles<Result = void>(
visitor: (
sourceFile: ts.SourceFile,
tree: Tree,
result: Result | undefined
result?: Result
) => Result | undefined
): Result | undefined {
let result: Result | undefined = undefined;
Expand Down
2 changes: 1 addition & 1 deletion modules/schematics-core/utility/visit-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function visitTSSourceFiles<Result = void>(
visitor: (
sourceFile: ts.SourceFile,
tree: Tree,
result: Result | undefined
result?: Result
) => Result | undefined
): Result | undefined {
let result: Result | undefined = undefined;
Expand Down
2 changes: 1 addition & 1 deletion modules/schematics/schematics-core/utility/visit-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function visitTSSourceFiles<Result = void>(
visitor: (
sourceFile: ts.SourceFile,
tree: Tree,
result: Result | undefined
result?: Result
) => Result | undefined
): Result | undefined {
let result: Result | undefined = undefined;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function visitTSSourceFiles<Result = void>(
visitor: (
sourceFile: ts.SourceFile,
tree: Tree,
result: Result | undefined
result?: Result
) => Result | undefined
): Result | undefined {
let result: Result | undefined = undefined;
Expand Down

0 comments on commit 4d1128c

Please sign in to comment.