import { scalar } from "./base.scalar"; import { profileEntity } from "./profileEntity"; import { projectEntity } from "./projectEntity"; import { newsletterEntity } from "./newsletterEntity"; export declare namespace newsletterReadModel { type Id = scalar.Uuid; interface Table { id?: Id; newsletter?: newsletterEntity.Id; profile?: profileEntity.Id; project?: projectEntity.Id; viewCount?: scalar.Integer; viewedAt?: scalar.IsoDatetime; } }