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
constfoo: string[]=[]//error: Type '{}' is missing the following properties from type 'string[]': length, pop, push, concat, and 26 more.constbar: string[]={}//no errorconstbaz: string[]={...foo}//runtime error because its not an arraybar.push("")
🙁 Actual behavior
object is assignable to an array type
🙂 Expected behavior
error because the object does not have all the members of Array
The text was updated successfully, but these errors were encountered:
Bug Report
🔎 Search Terms
spread object assignable to array
🕗 Version & Regression Information
Playground link with relevant code
💻 Code
🙁 Actual behavior
object is assignable to an array type
🙂 Expected behavior
error because the object does not have all the members of
Array
The text was updated successfully, but these errors were encountered: