mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
In the #48216 Material deps were updated to v15, but the components and modules in DevTools were not updated to MDC nor replaced with the legacy definitions. PR Close #48420
23 lines
836 B
TypeScript
23 lines
836 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.io/license
|
|
*/
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
import {NgModule} from '@angular/core';
|
|
import {MatLegacyProgressSpinnerModule as MatProgressSpinnerModule} from '@angular/material/legacy-progress-spinner';
|
|
import {MatLegacyTooltipModule as MatTooltipModule} from '@angular/material/legacy-tooltip';
|
|
|
|
import {DevToolsTabModule} from './devtools-tabs/devtools-tabs.module';
|
|
import {DevToolsComponent} from './devtools.component';
|
|
|
|
@NgModule({
|
|
declarations: [DevToolsComponent],
|
|
imports: [CommonModule, DevToolsTabModule, MatProgressSpinnerModule, MatTooltipModule],
|
|
exports: [DevToolsComponent],
|
|
})
|
|
export class DevToolsModule {
|
|
}
|