Skip to content

Commit

Permalink
chore: fix SimpleSet export
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Apr 25, 2019
1 parent 29e745f commit a9a3030
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/core/util/env.js
Expand Up @@ -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 }

0 comments on commit a9a3030

Please sign in to comment.