mirror of
https://github.com/MikroWizard/mikrofront.git
synced 2025-07-09 18:44:20 +02:00
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
import { NgModule } from "@angular/core";
|
|
import { CommonModule } from "@angular/common";
|
|
import { Highlight, HighlightAuto } from "ngx-highlightjs";
|
|
import { HighlightLineNumbers } from "ngx-highlightjs/line-numbers";
|
|
import { HighlightJsModule } from 'ngx-highlight-js';
|
|
import {
|
|
ButtonModule,
|
|
CardModule,
|
|
GridModule,
|
|
CollapseModule,
|
|
BadgeModule,
|
|
ModalModule,
|
|
FormModule,
|
|
ToastModule,
|
|
} from "@coreui/angular";
|
|
|
|
import { BackupsRoutingModule } from "./backups-routing.module";
|
|
import { BackupsComponent } from "./backups.component";
|
|
import { GuiGridModule } from "@generic-ui/ngx-grid";
|
|
import { MatDatepickerModule } from "@angular/material/datepicker";
|
|
import { MatInputModule } from "@angular/material/input";
|
|
import { MatFormFieldModule } from "@angular/material/form-field";
|
|
import { MatSelectModule } from "@angular/material/select";
|
|
import { FormsModule } from "@angular/forms";
|
|
import { UnifiedDiffComponent,SideBySideDiffComponent } from 'ngx-diff';
|
|
import { ClipboardModule } from "@angular/cdk/clipboard";
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BackupsRoutingModule,
|
|
CardModule,
|
|
CommonModule,
|
|
GridModule,
|
|
FormModule,
|
|
FormsModule,
|
|
ButtonModule,
|
|
ButtonModule,
|
|
GuiGridModule,
|
|
CollapseModule,
|
|
BadgeModule,
|
|
Highlight,
|
|
HighlightAuto,
|
|
HighlightLineNumbers,
|
|
ModalModule,
|
|
MatFormFieldModule,
|
|
MatInputModule,
|
|
MatDatepickerModule,
|
|
MatSelectModule,
|
|
UnifiedDiffComponent,
|
|
SideBySideDiffComponent,
|
|
ToastModule,
|
|
HighlightJsModule,
|
|
ClipboardModule
|
|
],
|
|
declarations: [BackupsComponent],
|
|
})
|
|
export class BackupsModule {}
|