UNPKG
@ngx-ext/decorators
Version:
RC (0.0.1-RC2)
latest (0.0.1)
0.0.1
0.0.1-RC2
0.0.1-RC1
0.0.1-RC0
Set of decorators making your life easier.
github.com/ngx-ext/decorators
ngx-ext/decorators
@ngx-ext/decorators
/
abstract-class.decorator.js
8 lines
(7 loc)
•
206 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{
Directive
}
from
'@angular/core'
;
export
function
AbstractClass
(
) {
// tslint:disable-next-line:only-arrow-functions
return
function
(
target
) {
return
Directive
()(target); }; }