UNPKG

textadv

Version:

Text Adventures generator from Markdown files

7 lines (6 loc) 248 B
import { Project } from './types.js'; export declare function validateProject(project: Project): string[]; export declare function parseFile(filePath: string, project?: Project): Promise<{ project: Project; mdAST: import("mdast").Root; }>;