UNPKG
ufiber
Version:
latest (0.0.0-exp-2.1)
0.0.0-exp-2.1
0.0.0-exp-2
0.0.0-exp-1
Next-gen webserver for node-js developer
github.com/aashishpanchal/ufiber
aashishpanchal/ufiber
ufiber
/
dist
/
utils
/
tools.d.ts
5 lines
•
150 B
TypeScript
View Raw
1
2
3
4
5
//#region src/utils/tools.d.ts
type
ByteUnit
=
'B'
|
'KB'
|
'MB'
|
'GB'
;
type
ByteString
=
`
${
number
}
${ByteUnit}
`
;
//#endregion
export
{
ByteString
};