import { JSONSchema, ValidateFunction } from '../../validation'; import { NotificationChannelType, NotificationType } from './notifications'; /** * Subscription details returned by the notifications-workers * @alpha */ export type SubscriptionDetails = { ignore_all_email: boolean; ignore_all_in_app: boolean; message_type: { [notificationType in NotificationType]: NotificationChannelType; }; }; /** * Subscription details * @alpha */ export declare namespace SubscriptionDetails { const schema: JSONSchema; const validate: ValidateFunction; } //# sourceMappingURL=subscription-details.d.ts.map