(
@Attribute('type') typeAttribute: string,
@Attribute('static') staticAttribute: string,
@Attribute('foo') fooAttribute: string,
)
| 2739 | staticAttribute: string; |
| 2740 | fooAttribute: string; |
| 2741 | constructor( |
| 2742 | @Attribute('type') typeAttribute: string, |
| 2743 | @Attribute('static') staticAttribute: string, |
| 2744 | @Attribute('foo') fooAttribute: string, |
| 2745 | ) { |
| 2746 | this.typeAttribute = typeAttribute; |
| 2747 | this.staticAttribute = staticAttribute; |
| 2748 | this.fooAttribute = fooAttribute; |
| 2749 | } |
| 2750 | } |
| 2751 | |
| 2752 | @Injectable() |
nothing calls this directly
no test coverage detected