UNPKG
stat-size
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Promise that returns the size of a file or directory.
github.com/Jaid/stat-size
jaid/stat-size
stat-size
/
index.d.ts
6 lines
•
153 B
TypeScript
View Raw
1
2
3
4
5
6
declare
module
"stat-size"
{
/** *
@returns
Size of file contents in bytes */
export
default
function
(
file
:
string
):
Promise
<
number
>; }