import { scalar } from "./base.scalar"; import { entity } from "./base.entity"; import { gameEntity } from "./gameEntity"; import { profileEntity } from "./profileEntity"; import { projectEntity } from "./projectEntity"; import { userEntity } from "./userEntity"; export declare namespace playAction { type Id = scalar.Uuid; interface Doc extends entity.Action { project?: projectEntity.Id; profile?: profileEntity.Id; owner?: profileEntity.Id; user?: userEntity.Id; count?: scalar.Integer; games?: Array; } type Table = entity.Wrapper; }