PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
node_modules
/
fkill
declare namespace fkill { interface Options { /** Force kill the process. @default false */ readonly force?: boolean; /** Kill all child processes along with the parent process. _(Windows only)_ @default true */ readonly tree?: boolean; /** Ignore capitalization when killing a process. Note that the case is always ignored on Windows. @default false */ readonly ignoreCase?: boolean; } } declare const fkill: { /** Fabulously kill processes. Cross-platform. @param input - One or more process IDs/names/ports to kill. To kill a port, prefix it with a colon. For example: `:8080`. @example ``` import fkill = require('fkill'); (async () => { await fkill(1337); console.log('Killed process'); })(); fkill('Safari'); fkill(':8080'); fkill([1337, 'Safari', ':8080']); ``` */ ( input: number | string | ReadonlyArray<string | number>, options?: fkill.Options ): Promise<void>; // TODO: remove this in the next major version, refactor the whole definition to: // declare function fkill( // input: number | string | ReadonlyArray<string | number>, // options?: fkill.Options // ): Promise<void> // export = fkill; default: typeof fkill; }; export = fkill;
[+]
..
[-] index.d.ts
[edit]
[-] readme.md
[edit]
[-] package.json
[edit]
[-] index.js
[edit]
[-] license
[edit]