From b680ea846a15974f0c931c58f837e276b995124a Mon Sep 17 00:00:00 2001 From: Paul Marechal Date: Mon, 6 Mar 2023 11:27:13 -0500 Subject: [PATCH] retype Position.isPosition --- packages/plugin-ext/src/plugin/types-impl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin-ext/src/plugin/types-impl.ts b/packages/plugin-ext/src/plugin/types-impl.ts index 6fa74bed148db..6e18b55425ace 100644 --- a/packages/plugin-ext/src/plugin/types-impl.ts +++ b/packages/plugin-ext/src/plugin/types-impl.ts @@ -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; }