2020-01-27 18:40:18 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { MatSelectModule } from '@angular/material/select';
|
|
|
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { ProfilerComponent } from './profiler.component';
|
|
|
|
|
import { TimelineModule } from './recording/timeline/timeline.module';
|
2020-02-18 21:13:57 +00:00
|
|
|
import { MatButtonModule } from '@angular/material/button';
|
2020-03-02 20:30:55 +00:00
|
|
|
import { ProfilerImportDialogComponent } from './profiler-import-dialog/profiler-import-dialog.component';
|
2020-01-27 18:40:18 +00:00
|
|
|
|
|
|
|
|
@NgModule({
|
2020-05-04 23:40:55 +00:00
|
|
|
declarations: [ProfilerComponent, ProfilerImportDialogComponent],
|
|
|
|
|
imports: [CommonModule, MatDialogModule, MatSelectModule, FormsModule, TimelineModule, MatButtonModule],
|
2020-01-27 18:40:18 +00:00
|
|
|
exports: [ProfilerComponent],
|
2020-03-02 20:30:55 +00:00
|
|
|
entryComponents: [ProfilerImportDialogComponent],
|
2020-01-27 18:40:18 +00:00
|
|
|
})
|
|
|
|
|
export class ProfilerModule {}
|