Skip to content

Commit

Permalink
fix: update tyupes for new exports
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed Feb 29, 2024
1 parent fbba395 commit 986035d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion types/cborg.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ export type DecodeOptions = import('./interface').DecodeOptions;
export type EncodeOptions = import('./interface').EncodeOptions;
import { decode } from './lib/decode.js';
import { decodeFirst } from './lib/decode.js';
import { Tokeniser } from './lib/decode.js';
import { tokensToObject } from './lib/decode.js';
import { encode } from './lib/encode.js';
import { Token } from './lib/token.js';
import { Type } from './lib/token.js';
export { decode, decodeFirst, encode, Token, Type };
export { decode, decodeFirst, Tokeniser as Tokenizer, tokensToObject, encode, Token, Type };
//# sourceMappingURL=cborg.d.ts.map
2 changes: 1 addition & 1 deletion types/cborg.d.ts.map

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

0 comments on commit 986035d

Please sign in to comment.