/** * 发送埋点,数据统计对象 * * 占坑。暂未完全实现其功能 * * @category 统计 */ export declare class Statistician { private _id; private _label; /** * 实例化 * @param _id 事件ID * @param _label 事件label */ constructor(_id: string, _label: string); /** * 设定事件ID * @param id */ id(id?: string): Statistician; /** * 设定事件label * @param label */ label(label?: string): Statistician; /** * 发送统计事件 */ send(): Promise; /** * 创建一个的统计事件实例 */ static create(...args: ConstructorParameters): Statistician; }