Skip to content

Commit db5b684

Browse files
Merge pull request #176 from lechnerc77/TS2307-error
fix: wrong references in imports
2 parents 105b3c7 + 58c1bcf commit db5b684

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/types/Request.type.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { IEtag } from "./Etag.type";
22
import { IRequestMetadata } from "./RequestMetadata.type";
3-
import { IStateOptions } from "./StateOptions.type";
3+
import { IStateOptions } from "./state/StateOptions.type";
44

55
export type IRequest = {
66
key: string;

src/types/state/StateOptions.type.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { EStateConsistency } from "../enum/StateConsistency.enum";
2-
import { EStateConcurrency } from "../enum/StateConcurrency.enum";
1+
import { EStateConsistency } from "../../enum/StateConsistency.enum";
2+
import { EStateConcurrency } from "../../enum/StateConcurrency.enum";
33

44
export type IStateOptions = {
55
concurrency: EStateConcurrency;

0 commit comments

Comments
 (0)