Skip to content

Commit

Permalink
retype Position.isPosition
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-marechal committed Mar 6, 2023
1 parent 2ae3688 commit b680ea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugin-ext/src/plugin/types-impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ export class Position {
return result!;
}

static isPosition(other: {}): other is Position {
static isPosition(other: unknown): other is Position {
if (!other) {
return false;
}
Expand Down

0 comments on commit b680ea8

Please sign in to comment.