UNPKG

@swrpg-online/dice

Version:

A TypeScript library that creates dice rolls using the narrative dice system for the Star Wars Roleplaying Game by Fantasy Flight Games and Edge Studio.

12 lines (11 loc) 271 B
import { type Symbol } from "./types"; export type CostType = { [key in Symbol]?: number; }; type Hint = { description: string; cost: CostType; }; export declare const hints: Hint[]; export declare function hintCostDisplayText(hint: Hint): string; export {};