UNPKG

opencv-ts

Version:

This package is a work in progress to translate opecv with a typescript definition

8 lines 148 B
declare module Point { interface Point { new(x: number, y: number): Point; x: number; y: number; } } export = Point;