import { CommonModule, } from '@angular/common'; import { NgModule } from '@angular/core'; import { PictureFileUploaderModule, } from './../index'; import { PopoverModule, } from './../../elements/index'; import { SvgHrefModule, } from './../../helpers/directives/index'; import { FulfilmentFieldControlComponent, } from './fulfilment-field-control.component'; @NgModule({ declarations: [ FulfilmentFieldControlComponent, ], exports: [ FulfilmentFieldControlComponent, ], imports: [ CommonModule, PopoverModule, PictureFileUploaderModule, SvgHrefModule, ], }) export class FulfilmentFieldControlModule { }