@intlayer/chokidar
Version:
Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.
11 lines • 429 B
TypeScript
//#region src/utils/runParallel/wmic.d.ts
type ProcessList = [number, number][];
type ProcessListCallback = (err: Error | null, list?: ProcessList) => void;
/**
* Gets the list of all the pids of the system through the wmic command.
* @param callback Callback function with error and process list.
*/
declare const wmic: (callback: ProcessListCallback) => void;
//#endregion
export { wmic };
//# sourceMappingURL=wmic.d.ts.map