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

18 lines
859 B
TypeScript

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';
import { MatButtonModule } from '@angular/material/button';
import { ProfilerImportDialogComponent } from './profiler-import-dialog/profiler-import-dialog.component';
@NgModule({
declarations: [ProfilerComponent, ProfilerImportDialogComponent],
imports: [CommonModule, MatDialogModule, MatSelectModule, FormsModule, TimelineModule, MatButtonModule],
exports: [ProfilerComponent],
entryComponents: [ProfilerImportDialogComponent],
})
export class ProfilerModule {}