Skip to content

Commit

Permalink
0.13.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
b4rtaz committed Jun 19, 2024
1 parent 6397a30 commit 320f0a4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion model/src/builders/branched-step-model-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const branchesPath = Path.create('branches');
export class BranchedStepModelBuilder<TStep extends BranchedStep> extends StepModelBuilder<TStep> {
private readonly branchesBuilder = new PropertyModelBuilder<Branches>(branchesPath, this.circularDependencyDetector);

public branches(): PropertyModelBuilder<Branches> {
public branches(): PropertyModelBuilder<Branches, TStep['properties']> {
return this.branchesBuilder;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Properties } from 'sequential-workflow-model';
import { ValueContext } from '../../context';
import { GeneratedStringVariableValueModel } from './generated-string-model';
import { GeneratedStringVariableValueModel } from './generated-string-value-model';
import { DefaultValueContext } from '../../context/default-value-context';

export class GeneratedStringContext<TProperties extends Properties = Properties> {
Expand Down
2 changes: 1 addition & 1 deletion model/src/value-models/generated-string/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from './generated-string-context';
export * from './generated-string-model';
export * from './generated-string-value-model';

0 comments on commit 320f0a4

Please sign in to comment.