@simon_he/pi 0.0.21 → 0.0.23
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/cli.mjs +1 -1
- package/dist/index.cjs +61 -9
- package/dist/index.d.ts +2 -14
- package/dist/index.js +61 -9
- package/package.json +8 -8
package/dist/index.d.ts
CHANGED
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
|
|
1
|
+
declare function setup(): Promise<void>;
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
declare function pix(params: string): Promise<lazy_js_utils.IShellMessage>;
|
|
5
|
-
declare function pui(params: string[], pkg: string): Promise<void>;
|
|
6
|
-
declare function prun(params: string): lazy_js_utils.IShellMessage;
|
|
7
|
-
declare function pfind(params: string): lazy_js_utils.IShellMessage;
|
|
8
|
-
declare function pinit(): void;
|
|
9
|
-
declare function pil(params: string, pkg: string): Promise<void>;
|
|
10
|
-
declare function pu(): lazy_js_utils.IShellMessage;
|
|
11
|
-
declare function pci(params: string, pkg: string): Promise<void>;
|
|
12
|
-
declare function pa(): lazy_js_utils.IShellMessage;
|
|
13
|
-
declare function runner(): Promise<void>;
|
|
14
|
-
|
|
15
|
-
export { pa, pci, pfind, pi, pil, pinit, pix, prun, pu, pui, runner };
|
|
3
|
+
export { setup };
|