jssm 5.159.2 → 5.161.0

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.
@@ -15,7 +15,7 @@ import type { JssmGroupMemberRef, JssmTransitionConfig, JssmGraphConfig } from '
15
15
  * diagram or when overlap is pervasive.
16
16
  * - `'off'` — ignore groups entirely; byte-for-byte the historical output.
17
17
  */
18
- declare type RenderGroups = 'cluster' | 'chips' | 'off';
18
+ type RenderGroups = 'cluster' | 'chips' | 'off';
19
19
  /**
20
20
  * Inject runtime configuration for jssm/viz. Currently only accepts a
21
21
  * custom `DOMParser` constructor for use by `*_svg_element` functions in
@@ -304,7 +304,7 @@ declare function graph_attrs_body(config: JssmGraphConfig | undefined): string;
304
304
  *
305
305
  * @internal
306
306
  */
307
- declare type StateKind = 'final' | 'complete' | 'terminal' | 'base';
307
+ type StateKind = 'final' | 'complete' | 'terminal' | 'base';
308
308
  /**
309
309
  * Slugify a group name into the body of a Graphviz `cluster_…` subgraph
310
310
  * identifier. Graphviz treats any `subgraph` whose name begins with the
@@ -453,7 +453,7 @@ declare function chips_for_all_groups<T>(u_jssm: jssm.Machine<T>, l_states: stri
453
453
  * see {@link RenderGroups}. `'off'` reproduces the historical, group-blind
454
454
  * output byte-for-byte.
455
455
  */
456
- declare type VizRenderOpts = {
456
+ type VizRenderOpts = {
457
457
  hide_state_labels?: boolean;
458
458
  footer?: string;
459
459
  engine?: string;