All files / app/component/mod mod.component.ts

84.61% Statements 11/13
88.88% Branches 8/9
33.33% Functions 1/3
77.77% Lines 7/9

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 2467x   67x 67x 67x 67x 67x                           67x      
import { Component, forwardRef, Input } from '@angular/core';
import { Mod } from '../../model/tag';
import { ExtComponent } from '../ext/ext.component';
import { PluginComponent } from '../plugin/plugin.component';
import { RefComponent } from '../ref/ref.component';
import { TemplateComponent } from '../template/template.component';
import { UserComponent } from '../user/user.component';
 
@Component({
  selector: 'app-mod',
  templateUrl: './mod.component.html',
  styleUrl: './mod.component.scss',
  imports: [
    forwardRef(() => RefComponent),
    forwardRef(() => ExtComponent),
    UserComponent,
    PluginComponent,
    TemplateComponent,
  ],
})
export class ModComponentI {
  @Input() mod?: Mod;
}