@cocos/cocos-cli-types 0.0.1-alpha.15.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.
@@ -0,0 +1,17 @@
1
+ /**
2
+ * 配置的格式
3
+ */
4
+ export declare interface IConfiguration {
5
+ /**
6
+ * 其他配置
7
+ */
8
+ [key: string]: any;
9
+ }
10
+
11
+ export declare function init(projectPath: string): Promise<void>;
12
+
13
+ export declare function migrateFromProject(): Promise<IConfiguration>;
14
+
15
+ export declare function reload(): Promise<void>;
16
+
17
+ export { };
package/engine.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ export declare function init(projectPath: string): Promise<void>;
2
+
3
+ export { };