import type { notifications_EmailDeliveryTarget } from './notifications_EmailDeliveryTarget'; import type { notifications_InProductDeliveryTarget } from './notifications_InProductDeliveryTarget'; export type notifications_DeliveryTargets = { /** * Email delivers the notification by email. */ email?: notifications_EmailDeliveryTarget; /** * InProduct delivers the notification to the in-product notification inbox. */ inProduct?: notifications_InProductDeliveryTarget; };