angular-jsf-components
Version:
JSF Compliant Angular Components
21 lines (18 loc) • 495 B
text/typescript
import {Component, Input} from '@angular/core';
import {ValidationResponse} from '../../objects/validation-response';
import {JsfCore} from '../../superclass/jsf-core';
({
selector: 'f-event',
templateUrl: './f-event.component.html',
styleUrls: ['./f-event.component.css'],
})
export class FEventComponent {
()
id: string;
()
type: string;
()
listener: (elem: JsfCore) => Promise<ValidationResponse>;
constructor() {
}
}