import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace mergeTypeEnum { enum Id { TENANT = "tenant", ENV = "env", I18N = "i18n", LOCALE = "locale", DEVICE = "device", APP = "app" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; const Field: { [x: string]: string; }; interface Service extends enumeration.Service { field(key: Id): string; } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }