Skip to content

Commit

Permalink
Merge branch 'master' into v2-update-recommended
Browse files Browse the repository at this point in the history
  • Loading branch information
bradzacher committed Jul 29, 2019
2 parents 22d2db7 + 24dac45 commit ce7ecf1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ let objectPropCast = <ObjectType>{
declare functionWithArg(arg: () => number);
functionWithArg(() => 1);

declare functionWithObjectArg(arg: { meth: () => number });
declare functionWithObjectArg(arg: { method: () => number });
functionWithObjectArg({
meth() {
method() {
return 1;
},
});
Expand Down

0 comments on commit ce7ecf1

Please sign in to comment.