import { IBaseEntity } from '../../'; export interface INotification { id: string; active: boolean; jaenFields: { [type: string]: { [name: string]: any; }; } | null; } export interface INotificationsMigrationBase { [uuid: string]: IBaseEntity; } export type INotificationsMigration = { notifications: { [id: string]: INotification; }; };