showdown-calc-cli
Version:
Quick and easy pokemon damage calulations in your terminal
8 lines (7 loc) • 419 B
TypeScript
import { Result } from "@smogon/calc";
export declare const capitalize: (str: string) => string;
export declare const isMovePhysical: (move: string, gen: number) => boolean;
export declare const isMoveSpecial: (move: string, gen: number) => boolean;
export declare const displayResult: (result: Result) => void;
export { calcDamage } from "./calcDamageUtil";
export { getDamageCalcPrompts } from './damageCalcPrompts';