console/packages/services/api/src/modules/alerts/module.graphql.mappers.ts

8 lines
307 B
TypeScript
Raw Normal View History

import type { Alert, AlertChannel } from '../../shared/entities';
export type AlertChannelMapper = AlertChannel;
export type AlertSlackChannelMapper = AlertChannel;
export type AlertWebhookChannelMapper = AlertChannel;
export type TeamsWebhookChannelMapper = AlertChannel;
export type AlertMapper = Alert;