File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
import { prettyByte } from "./utils/prettyByte.ts" ;
2
- import { ExtensionCodec , ExtensionCodecType } from "./ExtensionCodec.ts" ;
2
+ import { ExtensionCodec } from "./ExtensionCodec.ts" ;
3
3
import { getInt64 , getUint64 , UINT32_MAX } from "./utils/int.ts" ;
4
4
import { utf8Decode } from "./utils/utf8.ts" ;
5
5
import { ensureUint8Array } from "./utils/typedArrays.ts" ;
6
6
import { CachedKeyDecoder , KeyDecoder } from "./CachedKeyDecoder.ts" ;
7
7
import { DecodeError } from "./DecodeError.ts" ;
8
8
import type { ContextOf } from "./context.ts" ;
9
+ import type { ExtensionCodecType } from "./ExtensionCodec.ts" ;
9
10
10
11
export type DecoderOptions < ContextType = undefined > = Readonly <
11
12
Partial < {
@@ -70,7 +71,7 @@ export type DecoderOptions<ContextType = undefined> = Readonly<
70
71
71
72
/**
72
73
* A function to convert decoded map key to a valid JS key type.
73
- *
74
+ *
74
75
* Defaults to a function that throws an error if the key is not a string or a number.
75
76
*/
76
77
mapKeyConverter : ( key : unknown ) => MapKeyType ;
You can’t perform that action at this time.
0 commit comments