narrat 3.10.0 → 3.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants.d.ts +7 -0
- package/dist/narrat.es.js +3795 -3702
- package/dist/narrat.es.js.map +1 -1
- package/dist/narrat.umd.js +42 -39
- package/dist/narrat.umd.js.map +1 -1
- package/dist/types/logging-types.d.ts +7 -0
- package/dist/utils/logging.d.ts +8 -0
- package/dist/vm/commands/js-commands.d.ts +9 -0
- package/dist/vm/commands/string-commands.d.ts +12 -0
- package/package.json +3 -1
package/dist/constants.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ScreenConfig } from './config/screens-config';
|
|
2
|
+
import { LogLevel } from './types/logging-types';
|
|
2
3
|
export declare const PRE_SIGNAL = "###_--_~=:;";
|
|
3
4
|
export declare const JUMP_SIGNAL = "###_--_~=:;_JUMP";
|
|
4
5
|
export declare const RETURN_SIGNAL = "###_--_~=:;_RETURN";
|
|
@@ -8,6 +9,12 @@ export type ReturnSignal = typeof JUMP_SIGNAL | typeof RETURN_SIGNAL | typeof OK
|
|
|
8
9
|
export declare function isReturnSignal(s: string): s is ReturnSignal;
|
|
9
10
|
export declare const VERSION: string;
|
|
10
11
|
export declare const BUILD_DATE: Date;
|
|
12
|
+
export declare const PRODUCTION: boolean;
|
|
13
|
+
export declare const GIT_INFO: {
|
|
14
|
+
branch: string;
|
|
15
|
+
commit: string;
|
|
16
|
+
};
|
|
17
|
+
export declare const LOG_LEVEL: LogLevel;
|
|
11
18
|
export declare const DEFAULT_DIALOG_WIDTH = 400;
|
|
12
19
|
export declare const DEFAULT_TEXT_SPEED = 20;
|
|
13
20
|
export declare const EMPTY_SCREEN = "@empty";
|