(
@Attribute('type') typeAttribute: string,
@Attribute('static') staticAttribute: string,
@Attribute('foo') fooAttribute: string,
)
| 2710 | staticAttribute: string; |
| 2711 | fooAttribute: string; |
| 2712 | constructor( |
| 2713 | @Attribute('type') typeAttribute: string, |
| 2714 | @Attribute('static') staticAttribute: string, |
| 2715 | @Attribute('foo') fooAttribute: string, |
| 2716 | ) { |
| 2717 | this.typeAttribute = typeAttribute; |
| 2718 | this.staticAttribute = staticAttribute; |
| 2719 | this.fooAttribute = fooAttribute; |
| 2720 | } |
| 2721 | } |
| 2722 | |
| 2723 | @Injectable() |
nothing calls this directly
no test coverage detected