UNPKG
@tb-app/web-view-api
Version:
latest (0.3.4)
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.2
0.2.1
0.2.0
0.1.0
实现webview与淘宝小程序之间的通信
github.com/noshower/tb-app/tree/main/packages/web-view-api
noshower/tb-app
@tb-app/web-view-api
/
types
/
apis
/
queryDBSize.d.ts
9 lines
(8 loc)
•
307 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
/** * 警查询数据库大小:该API提供查询当前小程序所使用的数据库大小,便于ISV实时看当前使用情况,避免超出数据库大小限制。 */
export
default
function
queryDBSize
(
):
Promise
<{
dbSize
:
number
;
warningLimit
:
number
;
deleteLimit
:
number
; }>;