template-lint
template-lint copied to clipboard
Spread operator bug
Hi there, wanna report a bug, very simple - spread operator breaks everything after it:
one(): void {
const x = {a: 1, ...someObject};
console.log(x);
}
two(): void {}
<button click.delegate="one()">x</button>
<button click.delegate="two()">y</button> // cannot find 'two' (and everything bellow) in type 'foo'