37 lines
938 B
TypeScript
37 lines
938 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
import {CdkScrollableModule} from '@angular/cdk/scrolling';
|
|
import {NgModule} from '@angular/core';
|
|
import {MatCommonModule} from '@angular/material/core';
|
|
import {MatDrawer, MatDrawerContainer, MatDrawerContent} from './drawer';
|
|
import {MatSidenav, MatSidenavContainer, MatSidenavContent} from './sidenav';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
MatCommonModule,
|
|
CdkScrollableModule,
|
|
MatDrawer,
|
|
MatDrawerContainer,
|
|
MatDrawerContent,
|
|
MatSidenav,
|
|
MatSidenavContainer,
|
|
MatSidenavContent,
|
|
],
|
|
exports: [
|
|
CdkScrollableModule,
|
|
MatCommonModule,
|
|
MatDrawer,
|
|
MatDrawerContainer,
|
|
MatDrawerContent,
|
|
MatSidenav,
|
|
MatSidenavContainer,
|
|
MatSidenavContent,
|
|
],
|
|
})
|
|
export class MatSidenavModule {}
|