You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
typeState='not-ready'|'ready';// ^// put the cursor here, press F2 and rename `ready` to `ok`.classA{state: State='not-ready';update(){switch(this.state){case'ready':
}}}
π Actual behavior
typeState='not-ready'|'ok';classA{state: State='not-ready';update(){switch(this.state){case'ready':
// Type '"ready"' is not comparable to type 'State'.(2678)}}}