UNPKG

@shift-code/cli

Version:

Redeem Gearbox SHiFT codes automatically

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