mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
26 lines
723 B
TypeScript
26 lines
723 B
TypeScript
// Type definitions for usage
|
|
// Project: https://github.com/arunoda/node-usage
|
|
// Definitions by: Pascal Vomhoff <https://github.com/pvomhoff>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
|
|
export interface ResultObject {
|
|
memory: number;
|
|
memoryInfo: {
|
|
rss: number;
|
|
vsize: number;
|
|
}
|
|
cpu: number;
|
|
}
|
|
|
|
export interface Options {
|
|
keepHistory: boolean;
|
|
}
|
|
|
|
export declare function lookup(pid: number, callback: (err: Error, result: ResultObject) => void): void;
|
|
export declare function lookup(pid: number, options: Options, callback: (err: Error, result: ResultObject) => void): void;
|
|
|
|
//Only availible on linux
|
|
export declare function clearHistory(pid?: number): void;
|