cdx-chores 0.0.7

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,14 @@
1
+ //#region src/cli/types.d.ts
2
+ interface RunCliOptions {
3
+ cwd?: string;
4
+ now?: () => Date;
5
+ platform?: NodeJS.Platform;
6
+ stdout?: NodeJS.WritableStream;
7
+ stderr?: NodeJS.WritableStream;
8
+ stdin?: NodeJS.ReadableStream;
9
+ }
10
+ //#endregion
11
+ //#region src/command.d.ts
12
+ declare function runCli(argv?: string[], runtime?: RunCliOptions): Promise<void>;
13
+ //#endregion
14
+ export { type RunCliOptions, runCli };