Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
tweak, import from root
Browse files Browse the repository at this point in the history
  • Loading branch information
KATT committed Oct 8, 2023
1 parent a2b489a commit c21f5af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/async/deserializeAsync.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
import { expect, test, vitest } from "vitest";

import {
TsonAsyncOptions,
TsonParseAsyncOptions,
TsonType,
createTsonAsync,
createTsonParseAsync,
Expand All @@ -18,8 +20,6 @@ import {
waitFor,
} from "../internals/testUtils.js";
import { TsonSerialized } from "../sync/syncTypes.js";
import { TsonAsyncOptions } from "./asyncTypes.js";
import { TsonParseAsyncOptions } from "./deserializeAsync.js";
import { mapIterable, readableStreamToAsyncIterable } from "./iterableUtils.js";

test("deserialize variable chunk length", async () => {
Expand Down
5 changes: 4 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ export * from "./sync/handlers/tsonSymbol.js";
// --- async --
export type { TsonAsyncOptions } from "./async/asyncTypes.js";
export { createTsonAsync } from "./async/createTsonAsync.js";
export { createTsonParseAsync } from "./async/deserializeAsync.js";
export {
TsonParseAsyncOptions,
createTsonParseAsync,
} from "./async/deserializeAsync.js";
export {
createAsyncTsonSerialize,
createTsonStringifyAsync,
Expand Down

0 comments on commit c21f5af

Please sign in to comment.