import { StatsType } from '../types/stats'; import { BaseResult } from './response.interface'; export interface StatsRequest { miniAppId: string; type: StatsType; startTime: number; endTime: number; utmSource?: string; utmMedium?: string; utmCampaign?: string; os?: string; } export interface StatsResult extends BaseResult { data: JSON; }