1234567891011121314 |
- import {IncidentStats as IncidentStatsType} from 'sentry/views/alerts/types';
- export function IncidentStats(
- params: Partial<IncidentStatsType> = {}
- ): IncidentStatsType {
- return {
- totalEvents: 100,
- uniqueUsers: 20,
- eventStats: {
- data: [],
- },
- ...params,
- };
- }
|