import { Report } from "./report"; import { Tracker } from "./index"; import { ConvertTypeEnum } from "../core/models/convertTypeEnum"; import { ReportDataTypeEnum } from "../core/enums/index"; /** * 转化追踪JS主体对象 */ export interface Nfe extends Report { tracker: Tracker; convertTypes: typeof ConvertTypeEnum; reportTypes: typeof ReportDataTypeEnum; init(): void; } /** 创建nfe实例 */ export declare const nfeFactory: () => Nfe; export interface NfePlugin { install(nfe: Nfe, options?: any): Nfe; } //# sourceMappingURL=nfe.d.ts.map