UNPKG
list-open-files
Version:
latest (1.1.0)
1.1.0
1.0.0
0.0.1
lsof for Node.js but with a modern API
github.com/grantila/list-open-files
grantila/list-open-files
list-open-files
/
dist
/
index.d.ts
7 lines
(6 loc)
•
202 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
*
from
'./lib/types'
;
export
interface
Options
{
pids
?:
Array
<
number
>;
concurrency
?:
number
; }
export
declare
function
lsof
(
opts
?:
Options
):
Promise
<
import
(
"./lib/types"
).
ProcessInfo
[]>;