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