mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
13 lines
231 B
TypeScript
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;
|