/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
typings/internalBinding/process.d.ts
15 строк
341 B
Paolo Insogna
process: add threadCpuUsage
21 фев 2025, 17:14
Не верифицирован
21 фев 2025, 17:14
e027791
Код
Авторство
О чём код?
interface CpuUsageValue { user: number; system: number; } declare namespace InternalProcessBinding { interface Process { cpuUsage(previousValue?: CpuUsageValue): CpuUsageValue; threadCpuUsage(previousValue?: CpuUsageValue): CpuUsageValue; } } export interface ProcessBinding { process: InternalProcessBinding.Process; }