Skip to content

Commit 9c52717

Browse files
committed
fix imports
1 parent 3b40330 commit 9c52717

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Decoder.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import { prettyByte } from "./utils/prettyByte.ts";
2-
import { ExtensionCodec, ExtensionCodecType } from "./ExtensionCodec.ts";
2+
import { ExtensionCodec } from "./ExtensionCodec.ts";
33
import { getInt64, getUint64, UINT32_MAX } from "./utils/int.ts";
44
import { utf8Decode } from "./utils/utf8.ts";
55
import { ensureUint8Array } from "./utils/typedArrays.ts";
66
import { CachedKeyDecoder, KeyDecoder } from "./CachedKeyDecoder.ts";
77
import { DecodeError } from "./DecodeError.ts";
88
import type { ContextOf } from "./context.ts";
9+
import type { ExtensionCodecType } from "./ExtensionCodec.ts";
910

1011
export type DecoderOptions<ContextType = undefined> = Readonly<
1112
Partial<{
@@ -70,7 +71,7 @@ export type DecoderOptions<ContextType = undefined> = Readonly<
7071

7172
/**
7273
* A function to convert decoded map key to a valid JS key type.
73-
*
74+
*
7475
* Defaults to a function that throws an error if the key is not a string or a number.
7576
*/
7677
mapKeyConverter: (key: unknown) => MapKeyType;

0 commit comments

Comments
 (0)