Skip to content

Commit

Permalink
fixed: path
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktor Pasynok committed Nov 3, 2024
1 parent 8e3b50e commit c6f9cce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/compose/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { combine, createEffect, createStore, launch, sample, type Store } from 'effector';
import { type AnyContainer } from '../createContainer';
import { CONTAINER_STATUS, type ContainerStatus } from '../createContainer/types';
import { type AnyContainer, CONTAINER_STATUS, type ContainerStatus } from '../createContainer';

const validateContainerId = (id: string, set: Set<string>) => {
if (set.has(id)) {
Expand Down
2 changes: 1 addition & 1 deletion src/createContainer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ const createContainer = <
};
};

export { createContainer, type AnyContainer };
export { CONTAINER_STATUS, createContainer, type AnyContainer, type ContainerStatus };

0 comments on commit c6f9cce

Please sign in to comment.