UNPKG
taro-code
Version:
latest (4.1.0)
next (4.0.0-beta.3)
4.1.0
4.0.1
4.0.0
4.0.0-beta.3
4.0.0-beta.2
4.0.0-beta.0
3.5.2
3.5.0
3.4.0
3.3.0
3.2.0
3.0.3
3.0.2
3.0.0-rc
2.2.0
2.1.0
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.4.0
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.1
Taro.js barcode & qrcode, Image & Canvas
github.com/miaonster/taro-code
miaonster/taro-code
taro-code
/
lib
/
common
/
canvas
/
qrcode.d.ts
11 lines
(10 loc)
•
305 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
Canvas
}
from
'@tarojs/taro'
;
export
declare
function
drawCanvasQRCode
(
text
:
string
,
options
: { size?:
number
; typeNumber?:
number
; errorCorrectLevel?:
'L'
|
'M'
|
'Q'
|
'H'
; foregroundColor:
string
; backgroundColor:
string
; canvas: Canvas; padding:
number
; }
):
void
;