-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.d.ts
More file actions
46 lines (45 loc) · 1.26 KB
/
app.d.ts
File metadata and controls
46 lines (45 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
declare namespace CS {
// const __keep_incompatibility: unique symbol;
//
// interface $Ref<T> {
// value: T
// }
// namespace System {
// interface Array$1<T> extends System.Array {
// get_Item(index: number):T;
//
// set_Item(index: number, value: T):void;
// }
// }
// interface $Task<T> {}
namespace System {
class Object
{
protected [__keep_incompatibility]: never;
}
class Array extends System.Object implements System.Collections.IEnumerable, System.ICloneable, System.Collections.IList, System.Collections.IStructuralComparable, System.Collections.IStructuralEquatable, System.Collections.ICollection
{
protected [__keep_incompatibility]: never;
}
interface ICloneable
{
}
}
namespace System.Collections {
interface IEnumerable
{
}
interface IList extends System.Collections.IEnumerable, System.Collections.ICollection
{
}
interface ICollection extends System.Collections.IEnumerable
{
}
interface IStructuralComparable
{
}
interface IStructuralEquatable
{
}
}
}