Преглед изворни кода

chore: fix SimpleSet export

Evan You пре 7 година
родитељ
комит
a9a303009a
1 измењених фајлова са 1 додато и 2 уклоњено
  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 }