File tree 2 files changed +11
-11
lines changed
src/material/core/selection 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
8
9
- import { NgModule } from '@angular/core' ;
10
- import { MatPseudoCheckbox } from './pseudo-checkbox/pseudo-checkbox' ;
11
- import { MatCommonModule } from '../common-behaviors/common-module' ;
12
-
13
- @NgModule ( {
14
- imports : [ MatCommonModule ] ,
15
- exports : [ MatPseudoCheckbox ] ,
16
- declarations : [ MatPseudoCheckbox ] ,
17
- } )
18
- export class MatPseudoCheckboxModule { }
19
-
20
9
export * from './pseudo-checkbox/pseudo-checkbox' ;
10
+ export * from './pseudo-checkbox/pseudo-checkbox-module' ;
Original file line number Diff line number Diff line change
1
+ import { NgModule } from '@angular/core' ;
2
+ import { MatPseudoCheckbox } from './pseudo-checkbox' ;
3
+ import { MatCommonModule } from '../../common-behaviors/common-module' ;
4
+
5
+ @NgModule ( {
6
+ imports : [ MatCommonModule ] ,
7
+ exports : [ MatPseudoCheckbox ] ,
8
+ declarations : [ MatPseudoCheckbox ] ,
9
+ } )
10
+ export class MatPseudoCheckboxModule { }
You can’t perform that action at this time.
0 commit comments