All files / lib feature-shortcut.module.ts

100% Statements 12/12
100% Branches 0/0
100% Functions 0/0
100% Lines 10/10

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 373x 3x 3x 3x   3x 3x 3x   3x 3x                                                 3x  
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ReactiveFormsModule, FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
 
import { UppBaseModule } from '@unpispas/upp-base';
import { UppWdgtModule } from '@unpispas/upp-wdgt';
import { UppDataModule } from '@unpispas/upp-data';
 
import { UppShortcutEditComponent } from '../components/upp-edit/upp-edit';
import { UppShortcutViewComponent } from '../components/upp-view/upp-view';
 
@NgModule({
    declarations: [
        UppShortcutEditComponent,
        UppShortcutViewComponent
    ],
    imports: [
        CommonModule,
        FormsModule,
        ReactiveFormsModule,
        IonicModule,
        UppBaseModule,
        UppWdgtModule,
        UppDataModule          
    ],
    exports: [
        UppShortcutEditComponent,
        UppShortcutViewComponent
    ],    
    providers: [],  
    schemas: [
        CUSTOM_ELEMENTS_SCHEMA
    ]      
})
export class FeatureShortcutModule {}