24 lines
780 B
TypeScript
24 lines
780 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
import { MatAutocompleteModule } from '@angular/material/autocomplete';
|
|
import { MatFormFieldModule } from '@angular/material/form-field';
|
|
import { MatInputModule } from '@angular/material/input';
|
|
|
|
import { CurrencySelectorComponent } from './currency-selector.component';
|
|
|
|
@NgModule({
|
|
declarations: [CurrencySelectorComponent],
|
|
exports: [CurrencySelectorComponent],
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
MatAutocompleteModule,
|
|
MatFormFieldModule,
|
|
MatInputModule,
|
|
ReactiveFormsModule
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class GfCurrencySelectorModule {}
|