UNPKG
zmp-qrcode
Version:
latest (3.0.0)
3.0.0
2.4.0
2.3.0
2.2.0
2.1.0
2.0.0
1.5.0
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
React component for generating QR Code that match Zalo Miniapps looks and feels.
zmp-qrcode
/
build
/
QRCode
/
QRCodeProps.types.d.ts
9 lines
(8 loc)
•
195 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
QRCodeProps
{
value
:
string
;
size
?:
number
; }
export
interface
QRCodeInstance
{
canvas
:
HTMLCanvasElement
;
getBase64
:
(
type
?:
'png'
|
'jpg'
) =>
string
; }