1
0

rename lib to sequence-js

This commit is contained in:
2024-05-11 16:57:34 +02:00
parent 486abefba6
commit 05390027f8
9 changed files with 929 additions and 929 deletions

View File

@@ -1,8 +1,8 @@
export { BaseEnumerable, DelegatedEnumerable } from "./sync/impl.js";
export * as Enumerables from "./sync/index.js";
export { BaseSequence, DelegatedSequence } from "./sync/impl.js";
export * as Sequences from "./sync/index.js";
export * from "./sync/types.js";
export { BaseAsyncEnumerable, DelegatedAsyncEnumerable } from "./async/impl.js";
export * as AsyncEnumerables from "./async/index.js";
export { BaseAsyncSequence, DelegatedAsyncSequence } from "./async/impl.js";
export * as AsyncSequences from "./async/index.js";
export * from "./async/types.js";
export * as Collectors from "./collector/index.js";
export * from "./collector/types.js";