angular-jsf-components
Version:
JSF Compliant Angular Components
20 lines (17 loc) • 574 B
text/typescript
import {Component, ElementRef, Input} from '@angular/core';
import {HFormService} from '../../services/h-form.service';
import {JsfElement} from '../../superclass/jsf-element';
({
selector: 'h-graphic-image',
templateUrl: './h-graphic-image.component.html',
styleUrls: ['./h-graphic-image.component.css'],
})
export class HGraphicImageComponent extends JsfElement {
()
library: string;
()
name: string;
constructor(hFormService: HFormService, elementRef: ElementRef) {
super(hFormService, elementRef);
}
}