UNPKG

ng2-bootstrap-base-modified

Version:

Native Angular Bootstrap Components Typeahead modified

24 lines (21 loc) 292 B
import {Component, Directive} from '@angular/core'; /** * Foo doc */ @Directive({ selector: '[foo]', exportAs: 'foo' }) export class Foo { } /** * Bar doc */ @Component({ selector: 'bar', template: ` <span>bar</span> ` }) export class Bar { }