File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11import { prettyByte } from "./utils/prettyByte.ts" ;
2- import { ExtensionCodec , ExtensionCodecType } from "./ExtensionCodec.ts" ;
2+ import { ExtensionCodec } from "./ExtensionCodec.ts" ;
33import { getInt64 , getUint64 , UINT32_MAX } from "./utils/int.ts" ;
44import { utf8Decode } from "./utils/utf8.ts" ;
55import { ensureUint8Array } from "./utils/typedArrays.ts" ;
66import { CachedKeyDecoder , KeyDecoder } from "./CachedKeyDecoder.ts" ;
77import { DecodeError } from "./DecodeError.ts" ;
88import type { ContextOf } from "./context.ts" ;
9+ import type { ExtensionCodecType } from "./ExtensionCodec.ts" ;
910
1011export 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 ;
You can’t perform that action at this time.
0 commit comments