import type { NotificationSettingsState } from "../types/notification-setting-types";

export const DEFAULT_NOTIFICATION_SETTINGS: NotificationSettingsState = {
  system: {
    enabled: true,
    unreadBadge: true,
  },

  gmail: {
    enabled: false,
    email: "",
  },
};