import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace chartTypeEnum { enum Id { LABEL = "label", COLUMN = "column", BAR = "bar", PIE = "pie", DOUGHNUT = "doughnut", LINE = "line", AREA = "area", SCATTER = "scatter", SPIDER = "spider", RADAR = "radar", GAUGE = "gauge", COMPARISON = "comparison" } 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; }