import { scalar } from "./base.scalar"; import { gameEntity } from "./gameEntity"; import { profileEntity } from "./profileEntity"; export declare namespace blacklistChildModel { type Id = scalar.Uuid; interface Table { id?: Id; game?: gameEntity.Id; child?: profileEntity.Id; owner?: profileEntity.Id; } }