import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace dbTableTypeEnum { enum Id { TABLE = "t", VIEW = "v", OTHER = "o" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; const Alternative: { table: string; view: string; other: string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }