personae
Version:
This tool is used to generate a person either NPC or other Edit
11 lines (10 loc) • 343 B
TypeScript
import "./extensions";
import { Person } from "opendnd-core";
declare class Renderer {
static renderDescription(person: Person): string;
static renderIntro(person: any): string;
static renderAbilities(person: any): string;
static toConsole(person: any): any;
static toMarkdown(person: any): any;
}
export default Renderer;