import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace primitiveTypeEnum { enum Id { STRING = "string", UUID = "uuid", ENUM = "enum", INTEGER = "integer", FLOAT = "float", BOOLEAN = "boolean", DATETIME = "datetime", DATE = "date", TIME = "time", OBJECT = "object", UNKNOWN = "unknown" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }