Expose the full API for now, see #356

Some things might be more useful than others, but we can decide on that later.
This commit is contained in:
dcodeIO 2018-12-02 23:46:32 +01:00
parent d5a6bbca9b
commit 6ed45bee98
5 changed files with 22 additions and 5 deletions

2
dist/asc.js vendored

File diff suppressed because one or more lines are too long

2
dist/asc.js.map vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -169,3 +169,20 @@ export function buildTSD(program: Program): string {
/** Prefix indicating a library file. */
export { LIBRARY_PREFIX } from "./common";
// Full API
export * from "./ast";
// export * from "./binary";
export * from "./common";
export * from "./compiler";
export * from "./decompiler";
export * from "./definitions";
export * from "./diagnosticMessages.generated";
export * from "./diagnostics";
export * from "./module";
export * from "./parser";
export * from "./program";
export * from "./resolver";
export * from "./tokenizer";
export * from "./types";
export * from "./util";