notification.ts 180 B

12345678
  1. import type { NotifyType } from './global-notification';
  2. export type INotificationType = {
  3. __t?: NotifyType
  4. _id: string
  5. // TOOD: Define the provider type
  6. provider?: any
  7. }