UNPKG

lifehash

Version:

TypeScript/JavaScript implementation of LifeHash, a visual hash algorithm

11 lines (10 loc) 233 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Size = void 0; class Size { constructor(width, height) { this.width = width; this.height = height; } } exports.Size = Size;