Angular - Performance Optimization
Given this Angular component code, which part will be removed by tree shaking if unused?
import { Component } from '@angular/core';
@Component({ selector: 'app-test', template: 'Test
' })
export class TestComponent {
usedMethod() { return 'used'; }
unusedMethod() { return 'unused'; }
}