import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace dbConstraintTypeEnum { enum Id { CHECK = "c", FOREIGN_KEY = "f", PRIMARY_KEY = "p", UNIQUE = "u", TRIGGER = "t", EXCLUSION = "x" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; const Alternative: { check: string; foreign: string; primary: string; unique: string; trigger: string; exclusion: string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }