Files
2026-03-11 09:49:47 +08:00

12 lines
284 B
TypeScript

/**
* @interface TUITranslateService
*/
export interface ITUIReportService {
/**
* Report key feature usage for analytics
* @param code - Event code for analytics
* @param feature - Feature name or identifier
*/
reportFeature(code: number, feature?: string): void;
}