21 lines
570 B
TypeScript
21 lines
570 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
|
|
*/
|
|
|
|
export * from './dialog';
|
|
export * from './dialog-config';
|
|
export * from './dialog-ref';
|
|
export {
|
|
MatDialogActions,
|
|
MatDialogClose,
|
|
MatDialogTitle,
|
|
MatDialogContent,
|
|
} from './dialog-content-directives';
|
|
export {MatDialogContainer} from './dialog-container';
|
|
export * from './module';
|
|
export {matDialogAnimations, _defaultParams} from './dialog-animations';
|