import { scalar } from "./base.scalar"; import { pair } from "./base.pair"; import { entity } from "./base.entity"; import { userEntity } from "./userEntity"; import { drawerEntity } from "./drawerEntity"; export declare namespace developerEntity { type Id = scalar.Uuid; interface Doc extends entity.Doc { name?: scalar.Title; _name?: scalar.Alpha; code?: scalar.Alpha; activated?: scalar.Boolean; email?: scalar.Email; phone?: scalar.Alpha; users?: Array; revenueRatio?: scalar.Float; taxRatio?: scalar.Float; drawers?: Array; } interface Filter extends entity.Filter { activated?: scalar.Boolean; } interface Service extends entity.Service { } type Table = entity.Wrapper; interface View extends entity.View { name?: scalar.Title; code?: scalar.Alpha; email?: scalar.Email; phone?: scalar.Alpha; users?: Array; } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }