angular/devtools/projects/ng-devtools/src/lib/devtools-tabs/profiler/profiler.module.ts

40 lines
1.2 KiB
TypeScript
Raw Normal View History

/**
* @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 {FormsModule} from '@angular/forms';
import {MatButtonModule} from '@angular/material/button';
import {MatCardModule} from '@angular/material/card';
import {MatDialogModule} from '@angular/material/dialog';
import {MatIconModule} from '@angular/material/icon';
import {MatSelectModule} from '@angular/material/select';
import {MatTooltipModule} from '@angular/material/tooltip';
2020-01-27 18:40:18 +00:00
import {ProfilerImportDialogComponent} from './profiler-import-dialog.component';
import {ProfilerComponent} from './profiler.component';
import {TimelineModule} from './timeline/timeline.module';
2020-01-27 18:40:18 +00:00
@NgModule({
declarations: [ProfilerComponent, ProfilerImportDialogComponent],
imports: [
CommonModule,
MatDialogModule,
MatIconModule,
MatSelectModule,
FormsModule,
TimelineModule,
MatButtonModule,
MatCardModule,
MatTooltipModule,
],
2020-01-27 18:40:18 +00:00
exports: [ProfilerComponent],
})
export class ProfilerModule {
}