Typescript and React setting initial state with empty typed array

The problem is that when you create a field in a class the compiler will type that field accordingly (either using the explicit type or an inferred type from the initialization expression such as in your case).

If you want to redeclare the field, you should specify the type explicitly :

export default class Alarms extends React.Component<{}, State> {
    state: Readonly<State> = {
        alarms: []
    };
}

Or set the state in the constructor:

export default class Alarms extends React.Component<{}, State> {
    constructor(p: {}) {
        super(p);
        this.state = {
            alarms: []
        };
    }
}

You could also cast the array to the expected type, but if there are a lot of fields it would be better to let the compiler check the object literal for you.


Would

alarms: [] as Alarm[]

work for Typescript and for you ?

See this question on how you can cast arrays in Typescript : TypeScript casting arrays