2021-12-10 02:37:01 +00:00
|
|
|
/**
|
|
|
|
|
* @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
|
|
|
|
|
*/
|
|
|
|
|
|
2021-12-09 05:44:17 +00:00
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
|
import {FormsModule} from '@angular/forms';
|
2023-08-30 22:41:16 +00:00
|
|
|
import {MatButtonModule} from '@angular/material/button';
|
|
|
|
|
import {MatCardModule} from '@angular/material/card';
|
|
|
|
|
import {MatDialogModule} from '@angular/material/dialog';
|
2021-12-09 05:44:17 +00:00
|
|
|
import {MatIconModule} from '@angular/material/icon';
|
2023-08-30 22:41:16 +00:00
|
|
|
import {MatSelectModule} from '@angular/material/select';
|
|
|
|
|
import {MatTooltipModule} from '@angular/material/tooltip';
|
2020-01-27 18:40:18 +00:00
|
|
|
|
2021-12-09 05:44:17 +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({
|
2020-05-04 23:40:55 +00:00
|
|
|
declarations: [ProfilerComponent, ProfilerImportDialogComponent],
|
2020-06-12 19:18:34 +00:00
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
MatDialogModule,
|
2020-08-24 20:19:37 +00:00
|
|
|
MatIconModule,
|
2020-06-12 19:18:34 +00:00
|
|
|
MatSelectModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
TimelineModule,
|
|
|
|
|
MatButtonModule,
|
|
|
|
|
MatCardModule,
|
2021-05-10 18:43:25 +00:00
|
|
|
MatTooltipModule,
|
2020-06-12 19:18:34 +00:00
|
|
|
],
|
2020-01-27 18:40:18 +00:00
|
|
|
exports: [ProfilerComponent],
|
|
|
|
|
})
|
2021-12-09 05:44:17 +00:00
|
|
|
export class ProfilerModule {
|
|
|
|
|
}
|