Skip to content

Commit

Permalink
deploy: 1a6bca0
Browse files Browse the repository at this point in the history
  • Loading branch information
benchmarko committed Dec 23, 2024
1 parent 4e1aa43 commit 005d949
Show file tree
Hide file tree
Showing 27 changed files with 908 additions and 336 deletions.
2 changes: 1 addition & 1 deletion Core.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Interfaces.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,9 @@ export interface IUI {
setOutputText(value: string): void;
checkSyntax(str: string): Promise<string>;
}
export interface IVm {
cls(): void;
print(_msg: string): void;
prompt(_msg: string): number | string;
}
//# sourceMappingURL=Interfaces.d.ts.map
2 changes: 1 addition & 1 deletion Interfaces.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Semantics.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions UI/UI.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { ICore, IUI, ConfigType } from "../Interfaces";
import type { ICore, IUI, ConfigType } from "../Interfaces";
export declare class UI implements IUI {
private readonly core;
private basicCm;
private compiledCm;
private basicCm?;
private compiledCm?;
private static getErrorEvent?;
constructor(core: ICore);
private debounce;
Expand Down
2 changes: 1 addition & 1 deletion UI/UI.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 18 additions & 16 deletions UI/UI.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 005d949

Please sign in to comment.