mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2025-04-20 08:58:41 +00:00
19 lines
396 B
TypeScript
19 lines
396 B
TypeScript
import { GA_EventName } from "../ga/type";
|
|
|
|
export enum DocumentEvent {
|
|
/**
|
|
* 从inject到content的事件
|
|
*/
|
|
Inject2Content = "inject2content",
|
|
/**
|
|
* 从content到inject的事件
|
|
*/
|
|
Content2Inject = "content2inject",
|
|
EngineVersion = "engineVersion",
|
|
GoogleAnalytics = "googleAnalytics",
|
|
}
|
|
export interface GoogleAnalyticsData {
|
|
event: GA_EventName;
|
|
params: string;
|
|
}
|