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