UNPKG
@tb-app/web-view
Version:
latest (0.6.5)
0.6.5
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
0.4.0
0.3.1
0.3.0
0.2.1
0.2.0
0.1.0
实现webview与淘宝小程序之间的通信
github.com/noshower/tb-app/tree/main/packages/web-view
noshower/tb-app
@tb-app/web-view
/
types
/
apis
/
database.d.ts
11 lines
(10 loc)
•
409 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * 数据库:千牛为小程序提供了数据库存储能力(my.database),但对插件数据库的大小做了限制,务必仔细最后一部分说明,未处理数据超限警告可能会导致数据库缓存被删除。 */
export
default
function
database
(
options
: { method:
'execSql'
|
'batchSql'
; sql:
string
; }
):
Promise
<{
data
:
string
;
errorMessage
:
string
; }>;