From 93f49fa6fba17e7c03d4fe0d0467477e5ad0554b Mon Sep 17 00:00:00 2001 From: Carsten Weber Date: Mon, 6 Apr 2020 20:03:04 +0200 Subject: [PATCH] Update KeyPoint.d.ts Update wrong parameter for KeyPoint typings. Keypoint.point is undefined. KeyPoint.pt is the correct param --- lib/typings/KeyPoint.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/typings/KeyPoint.d.ts b/lib/typings/KeyPoint.d.ts index 4718a3783..b9065bfb1 100644 --- a/lib/typings/KeyPoint.d.ts +++ b/lib/typings/KeyPoint.d.ts @@ -1,7 +1,7 @@ import { Point2 } from './Point2.d'; export class KeyPoint { - readonly point: Point2; + readonly pt: Point2; readonly size: number; readonly angle: number; readonly response: number;