import { scalar } from "./base.scalar"; import { projectEntity } from "./projectEntity"; export declare namespace profileDailyModel { type Id = scalar.Uuid; interface Table { id?: Id; project?: projectEntity.Id; date?: Date; profile?: profileDailyModel.Id; specs?: Specs; } interface Specs extends scalar.AnyObject { tbd?: scalar.Unknown; } }