mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Co-authored-by: Dimitri POSTOLOV <en3m@ya.ru> Co-authored-by: Kamil Kisiela <kamil.kisiela@gmail.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
7 lines
307 B
TypeScript
7 lines
307 B
TypeScript
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;
|