kaven-utils
Version:
Utils for Node.js.
22 lines (21 loc) • 866 B
TypeScript
/********************************************************************
* @author: Kaven
* @email: kaven@wuwenkai.com
* @website: http://blog.kaven.xyz
* @file: [Kaven-Utils] /src/KavenUtility.ChildProcess.ts
* @create: 2023-11-25 22:29:30.048
* @modify: 2024-11-01 17:02:27.206
* @version: 5.4.5
* @times: 30
* @lines: 153
* @copyright: Copyright © 2023-2024 Kaven. All Rights Reserved.
* @description: [description]
* @license: [license]
********************************************************************/
import { ICommand, IExecuteOptions } from "./base/Interfaces.js";
/**
* @since 5.0.7
* @version 2023-12-05
*/
export declare function Execute(command: ICommand): Promise<number | null>;
export declare function Execute(command: string, options?: IExecuteOptions): Promise<number | null>;