UNPKG

ng2-bootstrap-base-modified

Version:

Native Angular Bootstrap Components Typeahead modified

15 lines (11 loc) 265 B
import {Directive, Output, EventEmitter} from '@angular/core'; @Directive({ selector: '[foo]' }) export class Foo { /** * Desc */ @Output() myEvent = new EventEmitter(); @Output('myMappedEvent') _myMappedEvent = new EventEmitter(); }