pawtils
Version:
This repository contains several utils to work with the cryptocurrency [Paw](https://paw.digital/) inside the browser.
14 lines • 420 B
TypeScript
/**
* Represents QR code data
*/
export interface IQRCodeData {
data: Uint8ClampedArray;
size: number;
}
/**
* Returns a QR code representation of the provided text
* @param text - The text to generate the QR code for
* @param typeNumber - Optional type number
*/
export declare function generateQRCodeData(text: string, typeNumber?: number): IQRCodeData;
//# sourceMappingURL=qr-code.d.ts.map