Skip to content

Commit a9a3030

Browse files
committed
chore: fix SimpleSet export
1 parent 29e745f commit a9a3030

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/core/util/env.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,10 @@ if (typeof Set !== 'undefined' && isNative(Set)) {
8787
}
8888
}
8989

90-
interface SimpleSet {
90+
export interface SimpleSet {
9191
has(key: string | number): boolean;
9292
add(key: string | number): mixed;
9393
clear(): void;
9494
}
9595

9696
export { _Set }
97-
export type { SimpleSet }

0 commit comments

Comments
 (0)