UNPKG

lifehash

Version:

TypeScript/JavaScript implementation of LifeHash, a visual hash algorithm

7 lines (6 loc) 145 B
export declare class Point { x: number; y: number; constructor(x: number, y: number); equals(other: Point | unknown): boolean; }