import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace applicationEnum { enum Id { WEB = "web", ANDROID = "android", IOS = "ios", HUAWEI = "huawei", OTHER = "other" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; const Alternative: { windows: string; mac: string; android: string; gnulinux: string; ios: string; chromeos: string; kaios: string; tizen: string; ubuntu: string; freebsd: string; playstation: string; windowsphone: string; openbsd: string; nintendo: string; fedora: string; blackberryos: string; os2: string; playstationportable: string; mint: string; mtknucleus: string; mocordroid: string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }