mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 11:01:21 +08:00
9 lines
234 B
TypeScript
9 lines
234 B
TypeScript
declare var Symbol: any;
|
|
|
|
interface ObjectConstructor {
|
|
assign(target: any, ...sources: any[]): any;
|
|
is(value1: any, value2: any): boolean;
|
|
setPrototypeOf(o: any, proto: any): any;
|
|
}
|
|
|
|
declare var Object: ObjectConstructor; |