balda 0.0.35 → 0.0.36

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/lib/index.d.cts CHANGED
@@ -3191,6 +3191,8 @@ declare class CommandRegistry {
3191
3191
  private constructor();
3192
3192
  static getInstance(): CommandRegistry;
3193
3193
  static setCommandsPattern(pattern: string): void;
3194
+ getLogger(): Logger<string, boolean>;
3195
+ setLogger(logger: Logger): void;
3194
3196
  getCommand(name: string): typeof Command | null;
3195
3197
  getCommands(): (typeof Command)[];
3196
3198
  getBuiltInCommands(): (typeof Command)[];
package/lib/index.d.ts CHANGED
@@ -3191,6 +3191,8 @@ declare class CommandRegistry {
3191
3191
  private constructor();
3192
3192
  static getInstance(): CommandRegistry;
3193
3193
  static setCommandsPattern(pattern: string): void;
3194
+ getLogger(): Logger<string, boolean>;
3195
+ setLogger(logger: Logger): void;
3194
3196
  getCommand(name: string): typeof Command | null;
3195
3197
  getCommands(): (typeof Command)[];
3196
3198
  getBuiltInCommands(): (typeof Command)[];