I\'m coding a large TypeScript class and I\'ve set noImplicitAny to true. Is there any way to declare multiple variables of the same type on the same line?
I\'d lik
Array destructuring can be used on both side to assign values to multipel
[startBtn, completeBtn, againBtn] = [false, false, false];