(
@Attribute('type') typeAttribute: string,
@Attribute('static') staticAttribute: string,
@Attribute('foo') fooAttribute: string,
)
| 2745 | staticAttribute: string; |
| 2746 | fooAttribute: string; |
| 2747 | constructor( |
| 2748 | @Attribute('type') typeAttribute: string, |
| 2749 | @Attribute('static') staticAttribute: string, |
| 2750 | @Attribute('foo') fooAttribute: string, |
| 2751 | ) { |
| 2752 | this.typeAttribute = typeAttribute; |
| 2753 | this.staticAttribute = staticAttribute; |
| 2754 | this.fooAttribute = fooAttribute; |
| 2755 | } |
| 2756 | } |
| 2757 | |
| 2758 | @Injectable() |
nothing calls this directly
no test coverage detected