1
0

move types around

This commit is contained in:
2024-05-09 23:55:40 +02:00
parent fccebc61b6
commit 679a61f040
10 changed files with 58 additions and 60 deletions

View File

@@ -1,4 +1,4 @@
export * from "./sync.js";
export * from "./async.js";
export * from "./collector.js";
export * from "./random.js";
export { BaseEnumerable, Enumerable, GroupedEnumerable, OrderedEnumerable } from "./sync.js";
export { AsyncEnumerable, BaseAsyncEnumerable, GroupedAsyncEnumerable, OrderedAsyncEnumerable } from "./async.js";
export { Collector } from "./collector.js";
export { Random, RandomOptions } from "./random.js";