Matt W

Results 25 comments of Matt W

The problem is the types: ``` type V1 = { foo(): void; } type V2 = { foo: ()=>void; } ``` ....are logically equivalent, but behave differently in typia. ```typescript...

Similarly, if you look at the generated code in the playground link in https://github.com/samchon/typia/issues/1302#issuecomment-2379562090, you will see there is no generated code for `foo`, `qux` or `quux`, when there should...

RE you comment above: > Also, checking only property typed function is not a bug, bug intended spec following the standard way. The member methods are defined in the prototype...

@samchon - thank you for fixing the shorthand property issue 🙇 However, the original issue with an object containing a member function that is mapped to a data type remains...