Browse Source

chore: fix SimpleSet export

Evan You 7 years ago
parent
commit
a9a303009a
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/core/util/env.js

+ 1 - 2
src/core/util/env.js

@@ -87,11 +87,10 @@ if (typeof Set !== 'undefined' && isNative(Set)) {
   }
 }
 
-interface SimpleSet {
+export interface SimpleSet {
   has(key: string | number): boolean;
   add(key: string | number): mixed;
   clear(): void;
 }
 
 export { _Set }
-export type { SimpleSet }