mirror of
https://github.com/cocos/cocos-engine.git
synced 2026-06-19 20:47:19 +08:00
129 lines
4.6 KiB
TypeScript
129 lines
4.6 KiB
TypeScript
/*
|
|
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>;
|