UNPKG

qrcode-generator-ts

Version:

Typescript QR Code generator based on https://github.com/kazuhikoarase/qrcode-generator

8 lines (7 loc) 205 B
import { InputStream } from './InputStream'; export declare class ByteArrayInputStream extends InputStream { private bytes; private pos; constructor(bytes: number[]); readByte(): number; }