// Type definitions for pidusage 1.1 // Project: https://github.com/soyuka/pidusage // Definitions by: Cyril Schumacher // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped export interface Stat { cpu: number; memory: number; } export function stat(pid: number, callback: (error: Error, stat: Stat) => void): void; export function unmonitor(pid: number): void;