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