import { scalar } from './base.scalar'; import { entity } from './base.entity'; import { pair } from './base.pair'; import { projectEntity } from './projectEntity'; import { drawerEntity } from './drawerEntity'; export declare namespace seoEntity { type Id = scalar.Uuid; interface Doc extends entity.Doc, entity.ProjectAssignEntity { name?: scalar.Title; _name?: scalar.Alpha; code?: scalar.Alpha; description?: scalar.Description; activated?: scalar.Boolean; i18n?: TranslationRoot; drawers?: Array; } interface Filter extends entity.Filter { project?: Array; activated?: scalar.Boolean; } interface Service extends entity.Service, entity.ProjectAssignService { } type Table = entity.Wrapper; interface View extends entity.View { name?: scalar.Title; code?: scalar.Alpha; description?: scalar.Description; i18n?: TranslationRoot; } type TranslationRoot = scalar.StrMap; interface TranslationNode { [key: string]: TranslationNode | scalar.Description; } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }