import { scalar } from "./base.scalar"; import { projectEntity } from "./projectEntity"; import { profileEntity } from "./profileEntity"; import { gameEntity } from "./gameEntity"; import { model } from "./base.model"; import { pair } from "./base.pair"; export declare namespace playContinuedModel { type Id = scalar.Uuid; interface Filter extends model.Filter { } interface Table extends model.Core { createdAt?: scalar.IsoDatetime; updatedAt?: scalar.IsoDatetime; project?: projectEntity.Id; profile?: profileEntity.Id; game?: gameEntity.Id; duration?: scalar.Integer; times?: scalar.Integer; finished?: scalar.Boolean; closed?: scalar.Boolean; migratedAt?: scalar.IsoDatetime; durationOld?: scalar.Integer; } interface Service extends model.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }