mirror of
https://github.com/rxliuli/apps.apple.com.git
synced 2026-03-22 22:57:38 +01:00
8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
/**
|
|
* Event type constants for metrics development console
|
|
*/
|
|
export const eventType = {
|
|
RECORD: 'record',
|
|
FLUSH: 'flush',
|
|
} as const;
|