UNPKG

smart-webcomponents

Version:

Web Components & Custom Elements for Professional Web Applications

13 lines (9 loc) 303 B
import { NgModule } from '@angular/core'; import { BarcodeComponent } from './smart.barcode'; import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; @NgModule({ declarations: [BarcodeComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA], exports: [BarcodeComponent] }) export class BarcodeModule { }