@unlaxer/tramli 2.0.0 → 3.1.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.
- package/dist/cjs/types.d.ts +1 -1
- package/dist/esm/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/cjs/types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { FlowContext } from './flow-context.js';
|
|
|
3
3
|
/** State configuration: terminal and initial flags for each state. */
|
|
4
4
|
export type StateConfig = {
|
|
5
5
|
terminal: boolean;
|
|
6
|
-
initial
|
|
6
|
+
initial?: boolean;
|
|
7
7
|
};
|
|
8
8
|
/** Guard output — discriminated union (Java: sealed interface GuardOutput). */
|
|
9
9
|
export type GuardOutput = {
|
package/dist/esm/types.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { FlowContext } from './flow-context.js';
|
|
|
3
3
|
/** State configuration: terminal and initial flags for each state. */
|
|
4
4
|
export type StateConfig = {
|
|
5
5
|
terminal: boolean;
|
|
6
|
-
initial
|
|
6
|
+
initial?: boolean;
|
|
7
7
|
};
|
|
8
8
|
/** Guard output — discriminated union (Java: sealed interface GuardOutput). */
|
|
9
9
|
export type GuardOutput = {
|