qrmanual
Version:
Implementação de QR Code v2-L (25×25, correção L) em TypeScript
9 lines • 342 B
TypeScript
export interface SVGOptions {
scale?: number;
margin?: number;
backgroundColor?: string;
foregroundColor?: string;
}
export declare function renderSVG(matrix: (0 | 1)[][], options?: SVGOptions): string;
export declare function generateQRCodeSVG(payload: string, options?: SVGOptions): string;
//# sourceMappingURL=svg.d.ts.map