File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { InstanceArgs } from "./instance";
55import { PortConfig } from "./sequence-package-json" ;
66import { RunnerContainerConfiguration } from "./sth-configuration" ;
77
8- type CommonSequenceConfig = {
8+ export type CommonSequenceConfig = {
99 type : string ;
1010 engines : Record < string , string > ;
1111 id : string ;
@@ -45,11 +45,7 @@ export type KubernetesSequenceConfig = CommonSequenceConfig & {
4545 type : "kubernetes"
4646}
4747
48- export type SequenceConfigDisplay = CommonSequenceConfig & {
49- type : string
50- }
51-
5248// eslint-disable-next-line max-len
53- export type SequenceConfig = DockerSequenceConfig | ProcessSequenceConfig | KubernetesSequenceConfig | SequenceConfigDisplay ;
49+ export type SequenceConfig = DockerSequenceConfig | ProcessSequenceConfig | KubernetesSequenceConfig | CommonSequenceConfig ;
5450
5551export type InstanceConfig = SequenceConfig & { instanceAdapterExitDelay : number , limits : InstanceLimits }
You can’t perform that action at this time.
0 commit comments