ng2-bootstrap-base-modified
Version:
Native Angular Bootstrap Components Typeahead modified
31 lines (23 loc) • 371 B
text/typescript
import {Directive, Input} from '@angular/core';
/**
* Foo doc
*/
({
selector: '[foo]'
})
export class Foo {
/**
* Has default value
*/
() foo = 5;
/**
* Bar doc
*/
() bar: string;
() baz: string | boolean;
notAnInput;
set notAnInputEither(val) {
}
regularMethod() {
}
}