arrays - Object literal's property 'children' implicitly has an 'any[]' type -


how can set myotherkey property have any?

typescript error ..

object literal's property 'children' implicitly has 'any[]' type 

object initialization ..

let myobject = {   mykey: 'somevalue',   myotherkey: [] }; 

what assert expected type of array should in order overwrite compiler's resolution of any type.

let myobject = {   mykey: 'somevalue',   myotherkey: [] string[] }; 

Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -