Skip to content

Commit

Permalink
rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
ikreymer committed Sep 6, 2024
1 parent 5df35f8 commit 6ad8c60
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 1 addition & 3 deletions dist/types/remotearchivedb.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import { ArchiveDB, type Opts as ADBOpts } from "./archivedb";
import { type BaseLoader } from "./blockloaders";
import { type Source, type ResourceEntry } from "./types";
export type GetHash = {
getHash: () => string;
};
import { type GetHash } from "./wacz/ziprangereader";
export type LoadRecordFromSourceType = Promise<{
remote: ResourceEntry | null;
hasher?: GetHash | null;
Expand Down
2 changes: 1 addition & 1 deletion dist/types/remotearchivedb.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion dist/types/wacz/ziprangereader.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import { AsyncIterReader } from "warcio";
import { BaseLoader } from "../blockloaders";
import { type IHasher } from "hash-wasm/dist/lib/WASMInterface.js";
import { type GetHash } from "../remotearchivedb";
export type GetHash = {
getHash: () => string;
};
export type ReaderAndHasher = {
reader: AsyncIterReader;
hasher?: GetHash | null;
Expand Down
2 changes: 1 addition & 1 deletion dist/types/wacz/ziprangereader.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6ad8c60

Please sign in to comment.