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 | 67x 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;
}
|