Skip to content

Commit

Permalink
ok
Browse files Browse the repository at this point in the history
  • Loading branch information
mshustov committed Oct 27, 2020
1 parent 5a7b4e1 commit 77262de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/kbn-utility-types/test-d/method_keys_of.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Test {
getName() {
return this.name;
}
// @ts-expect-error
// @ts-ignore
private getDoubleName() {
return this.name.repeat(2);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-utility-types/test-d/public_methods_of.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class Test {
getName() {
return this.name;
}
// @ts-expect-error
// @ts-ignore
private getDoubleName() {
return this.name.repeat(2);
}
Expand Down

0 comments on commit 77262de

Please sign in to comment.