UNPKG

@nuintun/qrcode

Version:

A pure JavaScript QRCode encode and decode library.

10 lines (9 loc) 197 B
/** * @module PlotLine */ import { Point } from './Point.cjs'; export declare class PlotLine { #private; constructor(from: Point, to: Point); points(): Generator<[x: number, y: number]>; }