@smooai/utils
Version:
A collection of shared utilities and tools used across SmooAI projects. This package provides common functionality to standardize and simplify development across all SmooAI repositories.
13 lines • 659 B
text/typescript
//#region src/utils/zx-factory.d.ts
declare const $$: import("zx").Shell<false, import("zx").ProcessPromise>;
declare const $$quiet: import("zx").Shell<false, import("zx").ProcessPromise>;
declare function createZxInstance(options?: {
cwd?: string;
quiet?: boolean;
verbose?: boolean;
}): import("zx").Shell<false, import("zx").ProcessPromise>;
declare const $$cwd: (cwd: string) => import("zx").Shell<false, import("zx").ProcessPromise>;
declare const $$quietCwd: (cwd: string) => import("zx").Shell<false, import("zx").ProcessPromise>;
//#endregion
export { $$, $$cwd, $$quiet, $$quietCwd, createZxInstance };
//# sourceMappingURL=zx-factory.d.cts.map