@nuintun/qrcode
Version:
A pure JavaScript QRCode encode and decode library.
11 lines (10 loc) • 309 B
TypeScript
/**
* @module GridSampler
*/
import { BitMatrix } from './BitMatrix.js';
import { PerspectiveTransform } from './PerspectiveTransform.js';
export declare class GridSampler {
#private;
constructor(matrix: BitMatrix, transform: PerspectiveTransform);
sample(width: number, height: number): BitMatrix;
}