Files
Hristo Deshev 499db0eb47 Remove global Object var declaration to avoid clashing with TS 2.0
TypeScript 2.0 now has its own Object typings.
2016-08-29 14:35:44 +03:00

13 lines
231 B
TypeScript

interface Symbol {
toString(): string;
valueOf(): Object;
}
interface SymbolConstructor {
prototype: Symbol;
(description?: string | number): symbol;
iterator: symbol;
}
declare var Symbol: SymbolConstructor;