UNPKG
@lx-frontend/taro-plugin-monitor
Version:
beta (1.1.2-beta.0)
latest (1.1.1)
1.1.2-beta.0
1.1.1
1.1.0
1.1.0-beta.1
1.0.14
1.0.13
1.0.12
1.0.11
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
taro 小程序监控插件,收集生命周期、事件、错误等数据
@lx-frontend/taro-plugin-monitor
/
types
/
index.d.ts
13 lines
(11 loc)
•
314 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/// <reference types="@tarojs/taro" />
// 扩展 Taro 的静态方法
declare
namespace
Taro
{
interface
TaroStatic
{
monitorEvent
: {
on
:
(
eventName
:
'all'
,
callback
: (track:
any
) =>
void
) =>
void
off
:
(
eventName
:
'all'
) =>
void
trigger
(
events
:
EventName
, ...
args
:
any
[]):
any
} } }