@cocos/cocos-cli-types 0.0.1-alpha.23.1 → 0.0.1-alpha.24.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets.d.ts +58 -58
- package/builder.d.ts +288 -292
- package/cli.d.ts +151 -149
- package/configuration.d.ts +1 -1
- package/engine.d.ts +1 -1
- package/index.d.ts +303 -301
- package/package.json +1 -1
- package/project.d.ts +7 -7
- package/scripting.d.ts +7 -7
package/configuration.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { EventEmitter } from 'events';
|
|
|
5
5
|
*/
|
|
6
6
|
export declare type ConfigurationScope = 'default' | 'project';
|
|
7
7
|
|
|
8
|
-
declare type EventEmitterMethods = Pick<EventEmitter, 'on' | 'off' | 'once' | 'emit'>;
|
|
8
|
+
export declare type EventEmitterMethods = Pick<EventEmitter, 'on' | 'off' | 'once' | 'emit'>;
|
|
9
9
|
|
|
10
10
|
export declare function get<T>(key: string, scope?: ConfigurationScope): Promise<T>;
|
|
11
11
|
|
package/engine.d.ts
CHANGED
|
@@ -229,7 +229,7 @@ export declare interface IFeatureItem extends BaseItem {
|
|
|
229
229
|
|
|
230
230
|
export declare type IFlags = Record<string, boolean | number>;
|
|
231
231
|
|
|
232
|
-
declare type IFlags_2 = Record<string, boolean | number>;
|
|
232
|
+
export declare type IFlags_2 = Record<string, boolean | number>;
|
|
233
233
|
|
|
234
234
|
export declare interface IInitEngineInfo {
|
|
235
235
|
importBase: string;
|