UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

28 lines (21 loc) 720 B
// 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 declare module "usage" { export interface ResultObject { memory:number; memoryInfo: { rss:number; vsize:number; } cpu:number; } export interface Options { keepHistory:boolean; } export function lookup(pid:number, callback:(err:Error, result:ResultObject) => void):void; export function lookup(pid:number, options:Options, callback:(err:Error, result:ResultObject) => void):void; //Only availible on linux export function clearHistory(pid?:number):void; }