forked from cocos/cocos-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.d.ts
128 lines (99 loc) · 4.57 KB
/
globals.d.ts
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd.
http://www.cocos.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated engine source code (the "Software"), a limited,
worldwide, royalty-free, non-assignable, revocable and non-exclusive license
to use Cocos Creator solely to develop games on your target platforms. You shall
not use Cocos Creator software for developing other software or tools that's
used for developing games. You are not granted to publish, distribute,
sublicense, and/or sell copies of Cocos Creator.
The software or tools in this License Agreement are licensed, not sold.
Xiamen Yaji Software Co., Ltd. reserves all rights not expressly granted to you.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
declare const gfx: any;
declare const global: any;
declare const xr: any;
interface Window {
[x: string]: any;
WebGL2RenderingContext: any;
sharedCanvas: any;
__canvas: any;
canvas: any;
XMLHttpRequest: any;
mozRequestAnimationFrame(callback: any, element?: any): any;
oRequestAnimationFrame(callback: any, element?: any): any;
msRequestAnimationFrame(callback: any, element?: any): any;
cancelRequestAnimationFrame(callback: any, element?: any): any;
msCancelRequestAnimationFrame(callback: any, element?: any): any;
mozCancelRequestAnimationFrame(callback: any, element?: any): any;
oCancelRequestAnimationFrame(callback: any, element?: any): any;
webkitCancelRequestAnimationFrame(callback: any, element?: any): any;
msCancelAnimationFrame(callback: any, element?: any): any;
mozCancelAnimationFrame(callback: any, element?: any): any;
ocancelAnimationFrame(callback: any, element?: any): any;
}
interface Document {
mozHidden: any;
msHidden: any;
webkitHidden: any;
}
interface HTMLElement {
content: any;
name: any;
}
declare type CompareFunction<T> = (a: T, b: T) => number;
declare type RecursivePartial<T> = {
[P in keyof T]?:
T[P] extends Array<infer U> ? Array<RecursivePartial<U>> :
T[P] extends ReadonlyArray<infer V> ? ReadonlyArray<RecursivePartial<V>> : RecursivePartial<T[P]>;
};
declare type TypedArray = Uint8Array | Uint8ClampedArray | Int8Array | Uint16Array |
Int16Array | Uint32Array | Int32Array | Float32Array | Float64Array;
declare type TypedArrayConstructor = Uint8ArrayConstructor | Uint8ClampedArrayConstructor |
Int8ArrayConstructor | Uint16ArrayConstructor | Int16ArrayConstructor | Uint32ArrayConstructor |
Int32ArrayConstructor | Float32ArrayConstructor | Float64ArrayConstructor;
declare interface IWritableArrayLike<T> {
readonly length: number;
[index: number]: T;
}
declare type Constructor<T = unknown> = new (...args: any[]) => T;
declare type AbstractedConstructor<T = unknown> = abstract new (...args: any[]) => T;
/**
* Alias of `Function` but suppress eslint warning.
* Please avoid using it and explicitly specify function signatures as possible.
*/
// eslint-disable-next-line @typescript-eslint/ban-types
declare type AnyFunction = Function;
declare type Mutable<T> = { -readonly [P in keyof T]: T[P] };
declare type Getter = () => any;
declare type Setter = (value: any) => void;
declare const Buffer: any;
declare type EnumAlias<EnumT> = EnumT[keyof EnumT];
declare module 'internal:native' {}
/**
* Only declare on minigame platforms.
*/
declare const GameGlobal: any;
/**
* only implemented on Editor.
*/
declare const Editor: any;
/**
* To provide a safe Record type, if you want to enable checking index access on Object, please use SafeRecord instead of Record.
* we provide this type because we don't want to enable `noUncheckedIndexedAccess` in tsconfig.json for it's noisy for a lot of code.
*/
type SafeRecord<T extends (string | number | symbol), K> = Record<T, K | undefined>;
/**
* To provide a safe Array type, if you want to enable checking index access on Array, please use SafeArray instead of Array.
* we provide this type because we don't want to enable `noUncheckedIndexedAccess` in tsconfig.json for it's noisy for a lot of code.
*/
type SafeArray<T> = Array<T | undefined>;