narrat 3.10.1 → 3.10.3

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.
@@ -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";
@@ -3320,6 +3320,8 @@ export declare const sourceAllStores: {
3320
3320
  readonly store: import("pinia").StoreDefinition<"inputs", import("../stores/inputs-store").InputsStoreState, {}, {
3321
3321
  setupInputs(): void;
3322
3322
  createInGameInputListener(): void;
3323
+ startTyping(): void;
3324
+ stopTyping(): void;
3323
3325
  removeInGameInputListener(): void;
3324
3326
  listenToContainerInputs(): void;
3325
3327
  listenToBaseNarratInputs(): void;