refactor(collection): remove default export (#8053)

This commit is contained in:
A. Román
2022-06-09 16:53:01 +02:00
committed by GitHub
parent 598f61b992
commit 16810f3e41
4 changed files with 3 additions and 5 deletions

View File

@@ -776,5 +776,3 @@ export type Keep<V> = { keep: true; value: V } | { keep: false };
* @internal
*/
export type Comparator<K, V> = (firstValue: V, secondValue: V, firstKey: K, secondKey: K) => number;
export default Collection;