// Type definitions for graham_scan v1.0.2 // Project: https://github.com/brian3kb/graham_scan_js // Definitions by: Harm Berntsen // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare class ConvexHullGrahamScan { addPoint(x: number, y: number): void; getHull(): {x: number, y: number}[]; } declare module 'graham_scan' { export = ConvexHullGrahamScan; }