Files
NativeScript/tns-core-modules/es6.d.ts
2017-02-10 11:48:51 +02: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;