Fix Symbol.valueOf method signature

This commit is contained in:
falsandtru
2017-01-18 12:05:25 +09:00
parent 381960f9ea
commit da05ced2e5

View File

@@ -3,7 +3,7 @@ interface Symbol {
toString(): string;
/** Returns the primitive value of the specified object. */
valueOf(): Object;
valueOf(): symbol;
}
interface SymbolConstructor {