Davide Tantillo 50e8104e7c c3 backup
2025-10-14 12:08:58 +02:00

9 lines
170 B
TypeScript

type QRCodeCorrectionLevel = "l" | "m" | "q" | "h";
declare class IQRCodeInstance extends IWorldInstance
{
text: string;
correctionLevel: QRCodeCorrectionLevel;
}