File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
tests/angular_devkit/schematics/tools/file-system-engine-host Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1010import { SchematicContext , Tree } from '@angular-devkit/schematics' ;
1111
1212export default function ( options : { } ) {
13- return ( tree : Tree , context : SchematicContext ) => {
13+ return ( tree : Tree , context : SchematicContext ) : void => {
1414 // We pass information back to the test.
1515 tree . create (
1616 ( context . schematic . description as any ) . extra , // tslint:disable-line:no-any
Original file line number Diff line number Diff line change 1010import { SchematicContext , Tree } from '@angular-devkit/schematics' ;
1111
1212export default function ( ) {
13- return ( _ : Tree , context : SchematicContext ) => {
13+ return ( _ : Tree , context : SchematicContext ) : void => {
1414 context . addTask ( {
1515 toConfiguration ( ) {
1616 return { name : 'file-tasks/file-task.js' } ;
Original file line number Diff line number Diff line change 66 * found in the LICENSE file at https://angular.dev/license
77 */
88export default function ( ) {
9- return ( ) => { } ;
9+ return ( ) : void => { } ;
1010}
You can’t perform that action at this time.
0 commit comments