fractive
Version:
Fractive is a hypertext authoring tool, primarily intended for the creation of interactive fiction.
12 lines (11 loc) • 350 B
TypeScript
import { FractiveProject } from "./ProjectSchema";
export declare let ProjectDefaults: FractiveProject;
export interface CompilerOptions {
dryRun?: boolean;
verbose?: boolean;
debug?: boolean;
}
export declare namespace Compiler {
function Compile(buildPath: string, options: CompilerOptions): void;
function ShowUsage(): void;
}