easyqrcodejs-nodejs
Version:
NodeJS QRCode generator. Can save image or svg to file, get standard base64 image data url text or get SVG serialized text. Cross-browser QRCode generator for pure javascript. Support Dot style, Logo, Background image, Colorful, Title etc. settings. suppo
27 lines (18 loc) • 515 B
TypeScript
// Type definitions for easyqrcodejs-nodejs.js
// Project: [https://github.com/ushelp/EasyQRCodeJS-NodeJS]
// Definitions by: Ray <inthinkcolor@gmail.com>
export = QRCode;
declare class QRCode {
constructor(vOption: any);
saveImage(saveOptions: any): any;
saveSVG(saveOptions: any): any;
toDataURL(format?: any): any;
toSVGText(format?: any): any;
toStream(format?: any): any;
static CorrectLevel: {
H: number;
L: number;
M: number;
Q: number;
};
}