mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
9 lines
170 B
TypeScript
9 lines
170 B
TypeScript
|
|
type QRCodeCorrectionLevel = "l" | "m" | "q" | "h";
|
|
|
|
declare class IQRCodeInstance extends IWorldInstance
|
|
{
|
|
text: string;
|
|
correctionLevel: QRCodeCorrectionLevel;
|
|
}
|