Browse Source

chore: fix SimpleSet export

dev
Evan You 6 years ago
parent
commit
a9a303009a
  1. 3
      src/core/util/env.js

3
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 }

Loading…
Cancel
Save