Declaring multiple TypeScript variables with the same type

后端 未结 11 1278
半阙折子戏
半阙折子戏 2020-12-10 00:09

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

11条回答
  •  囚心锁ツ
    2020-12-10 01:07

    e.g. let isFormSaved, isFormSubmitted, loading: boolean = false; this syntax only works in function block, but not outside of it in typescript export class file. Not sure why is that.

    For Example:

    export class SyntaxTest {
    
    public method1() {
        e.g. let isFormSaved, isFormSubmitted, loading: boolean = false;
    }
    

    }

提交回复
热议问题