import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace platformEnum { enum Id { DESKTOP = "desktop", PHONE = "phone", TABLET = "tablet", TV = "tv", CONSOLE = "console", OTHER = "other" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; const Alternative: { desktop: string; mobile: string; smartphone: string; tablet: string; phablet: string; television: string; portablemediaplayer: string; featurephone: string; carbrowser: string; camera: string; smartspeaker: string; tv: string; smartdisplay: string; wearable: string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }