Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
hazelnutcloud committed Mar 27, 2023
1 parent b9b56f5 commit ddc51e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/arkiver/providers/mongodb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ArkiverMetadata } from "../entities.ts";
import { ArkiverMetadata } from "../arkive-metadata.ts";
import { IndexedBlockHeightParams, StatusProvider } from "./interfaces.ts";

export class MongoStatusProvider implements StatusProvider {
Expand Down
2 changes: 1 addition & 1 deletion src/arkiver/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class Store extends Cache<{}, {}> {
key: string,
defaultValueAccessor: () => TValue | Promise<TValue>,
options?: Cache.SetOptions,
) {
): TValue | Promise<TValue> {
const value = super.get(key) as TValue | Promise<TValue>;
if (value) {
return value;
Expand Down

1 comment on commit ddc51e0

@vercel
Copy link

@vercel vercel bot commented on ddc51e0 Mar 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.