@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.
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "@cocos/cocos-cli-types",
3
+ "description": "types for cocos cli",
4
+ "author": "cocos cli",
5
+ "version": "0.0.1-alpha.15.1",
6
+ "main": "index.d.ts",
7
+ "types": "index.d.ts",
8
+ "files": [
9
+ "*.d.ts"
10
+ ]
11
+ }
package/project.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ declare function close_2(): Promise<void>;
2
+ export { close_2 as close };
3
+
4
+ export declare function init(projectPath: string): Promise<void>;
5
+
6
+ declare function open_2(projectPath: string): Promise<void>;
7
+ export { open_2 as open };
8
+
9
+ export { };
package/scripting.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ export declare function init(projectPath: string): Promise<void>;
2
+
3
+ export { };