import { scalar } from "./base.scalar"; import { profileEntity } from "./profileEntity"; import { projectEntity } from "./projectEntity"; import { notificationEntity } from "./notificationEntity"; import { notificationSentModel } from "./notificationSentModel"; export declare namespace notificationReadModel { type Id = scalar.Uuid; interface Table { id?: Id; notification?: notificationEntity.Id; transactions?: Array; profile?: profileEntity.Id; project?: projectEntity.Id; viewCount?: scalar.Integer; viewedAt?: scalar.IsoDatetime; } }