22 lines
735 B
TypeScript
22 lines
735 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 {DialogModule} from '@angular/cdk/dialog';
|
||
|
|
import {PortalModule} from '@angular/cdk/portal';
|
||
|
|
import {NgModule} from '@angular/core';
|
||
|
|
import {MatCommonModule} from '@angular/material/core';
|
||
|
|
import {MatBottomSheetContainer} from './bottom-sheet-container';
|
||
|
|
import {MatBottomSheet} from './bottom-sheet';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [DialogModule, MatCommonModule, PortalModule, MatBottomSheetContainer],
|
||
|
|
exports: [MatBottomSheetContainer, MatCommonModule],
|
||
|
|
providers: [MatBottomSheet],
|
||
|
|
})
|
||
|
|
export class MatBottomSheetModule {}
|