Skip to content

Commit

Permalink
fix: incorrect import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Oct 27, 2022
1 parent c95735f commit 320a6d7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/ttl-cache/cache-clock.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { environment } from "../urbex";
import { environment } from "../environment";

type Timeout = null | ReturnType<typeof setTimeout>;
type ClockMap = Map<string, ClockItem>;
Expand Down
2 changes: 1 addition & 1 deletion lib/ttl-cache/time-provider.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { environment } from "../urbex";
import { environment } from "../environment";

interface TimeProvider {
now(): number;
Expand Down
1 change: 0 additions & 1 deletion lib/ttl-cache/ttl-cache.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { environment } from "../urbex";
import { isUndefined, isNegative, absolute, merge } from "../utils";
import { timeProvider } from "./time-provider";
import { CacheClock } from "./cache-clock";
Expand Down

0 comments on commit 320a6d7

Please sign in to comment.