UNPKG

@shift-code/cli

Version:

Redeem Gearbox SHiFT codes automatically

20 lines (19 loc) 581 B
export declare const GameName: { bl1: string; bl2: string; bl3: string; tps: string; gf: string; ttw: string; }; export declare const PlatformName: { steam: string; xbox: string; psn: string; epic: string; stadia: string; }; export declare type IGameName = keyof typeof GameName; export declare type IPlatformName = keyof typeof PlatformName; export declare function isGameName(name: string | undefined): name is keyof typeof GameName; export declare function isPlatformName(name: string | undefined): name is keyof typeof PlatformName;