mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 04:23:31 +01:00
refactor(collection): remove default export (#8053)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { describe, test, expect } from 'vitest';
|
||||
import Collection from '../src';
|
||||
import { Collection } from '../src';
|
||||
|
||||
type TestCollection = Collection<string, number>;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user