@lx-frontend/taro-plugin-monitor
Version:
taro 小程序监控插件,收集生命周期、事件、错误等数据
14 lines (12 loc) • 344 B
TypeScript
/// <reference types="@tarojs/taro" />
import '@tarojs/taro'
// 扩展 Taro 的静态方法
declare module '@tarojs/taro' {
interface TaroStatic {
monitorEvent: {
on: (eventName: 'all', callback: (track: any) => void) => void;
off: (eventName: 'all') => void;
trigger(events: string, ...args: any[]): any;
};
}
}