import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace planOptionEnum { enum Id { NO_ADS = "no-ads", UNLIMITED_GAMEPLAY = "unlimited-gameplay", CANCELLABLE = "cancellable", ANY_DEVICE = "any-device", MULTIPLAYER_FRIEND = "multiplayer-friend", AIR_CONSOLE = "air-console" } 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; }