import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace subscriptionStatusEnum { enum Id { PENDING = "pending", ACTIVE = "active", SUSPENDED = "suspended", CANCELLED = "cancelled", TRIAL = "trial", FINISHED = "finished", OVERRIDDEN = "overridden", UNSUBSCRIBED = "unsubscribed", PAYMENT_PENDING = "payment-pending", PAYMENT_FAILED = "payment-failed" } 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; }