@dotbep/core 0.2.9 → 0.2.10

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/index.d.ts CHANGED
@@ -843,8 +843,9 @@ export declare class Effects extends Entity<FlowEffect> {
843
843
  export declare class Engine {
844
844
  private readonly getBep;
845
845
  private readonly getHistoricalBep?;
846
- private runtime;
846
+ private _runtime;
847
847
  private storage;
848
+ get runtime(): Runtime<any>;
848
849
  private skipRaci;
849
850
  private readonly transitionListeners;
850
851
  private readonly createdListeners;
@@ -2223,7 +2224,7 @@ export declare class Runtime<T extends {
2223
2224
  resolvers: Record<string, any>;
2224
2225
  env: Record<string, any>;
2225
2226
  } = BepTypes> {
2226
- protected readonly env: T['env'];
2227
+ env: T['env'];
2227
2228
  readonly effects: Record<string, EffectHandler>;
2228
2229
  readonly automations: Record<string, AutomationHandler>;
2229
2230
  readonly resolvers: Record<string, ResolverHandler>;