mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add types definition for find-process * Add new line at EOF * Compile TS LINT * 1. change import syntax. 2. Remove comments.
11 lines
454 B
TypeScript
11 lines
454 B
TypeScript
// Type definitions for find-process 1.1
|
|
// Project: https://github.com/yibn2008/find-process
|
|
// Definitions by: Buaban Buataitom <https://github.com/buaban>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
declare function find(by: string, value: string | number): Promise<Array<{ pid: string, ppid: string, uid: string, gid: string, name: string, cmd: string }>>;
|
|
declare namespace find {}
|
|
|
|
export = find;
|