Skip to content

Commit

Permalink
Adjust pipes exports
Browse files Browse the repository at this point in the history
  • Loading branch information
danrevah committed Dec 11, 2016
1 parent 9d9da33 commit fda7649
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/app/pipes/array/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ const ARRAY_PIPES = [
];

@NgModule({
declarations: [ ...ARRAY_PIPES ],
declarations: ARRAY_PIPES,
imports: [],
exports: [ ...ARRAY_PIPES ]
exports: ARRAY_PIPES
})
export class NgArrayPipesModule {}

Expand Down
4 changes: 2 additions & 2 deletions src/app/pipes/boolean/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ export const BOOLEAN_PIPES = [
];

@NgModule({
declarations: [...BOOLEAN_PIPES],
declarations: BOOLEAN_PIPES,
imports: [],
exports: [...BOOLEAN_PIPES]
exports: BOOLEAN_PIPES
})
export class NgBooleanPipesModule {}

Expand Down
4 changes: 2 additions & 2 deletions src/app/pipes/math/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ export const MATH_PIPES = [
];

@NgModule({
declarations: [...MATH_PIPES],
declarations: MATH_PIPES,
imports: [],
exports: [...MATH_PIPES]
exports: MATH_PIPES
})
export class NgMathPipesModule {}

Expand Down
4 changes: 2 additions & 2 deletions src/app/pipes/string/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export const STRING_PIPES = [
];

@NgModule({
declarations: [...STRING_PIPES],
declarations: STRING_PIPES,
imports: [],
exports: [...STRING_PIPES]
exports: STRING_PIPES
})
export class NgStringPipesModule {}

Expand Down

0 comments on commit fda7649

Please sign in to comment.