First commit

This commit is contained in:
2026-01-12 13:12:46 +01:00
parent b2d9501f6d
commit a1fbd8acf5
4413 changed files with 1245183 additions and 0 deletions

25
node_modules/swissqrbill/lib/esm/svg/swissqrcode.d.ts generated vendored Normal file
View File

@@ -0,0 +1,25 @@
import { SVG } from 'svg-engine';
import { Data } from '../shared/types.js';
export declare class SwissQRCode {
instance: SVG;
/**
* Creates a Swiss QR Code.
*
* @param data The data to be encoded in the QR code.
* @param size The size of the QR code in mm.
* @throws { ValidationError } Throws an error if the data is invalid.
*/
constructor(data: Data, size?: number);
/**
* Outputs the SVG as a string.
*
* @returns The outerHTML of the SVG element.
*/
toString(): string;
/**
* Returns the SVG element.
*
* @returns The SVG element.
*/
get element(): SVGElement;
}