UNPKG

@shift-code/cli

Version:

Redeem Gearbox SHiFT codes automatically

11 lines (10 loc) 348 B
import { Arguments } from 'yargs'; import { IPlatformName, IGameName } from '../names'; export interface RedeemFilter { platform?: IPlatformName[]; game?: IGameName[]; } export interface RedeemParameters extends RedeemFilter { codes?: string[]; } export declare function redeemCommand(args: Arguments<RedeemParameters>): Promise<void>;