UNPKG

showdown-calc-cli

Version:

Quick and easy pokemon damage calulations in your terminal

9 lines (8 loc) 253 B
import { Command } from "commander"; interface damageCalcOpts { interactive: boolean; rawString: string; gen: string; } export declare const damageCalc: ({ interactive, rawString, gen }: damageCalcOpts, program: Command) => void; export {};