UNPKG
prefix-si
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.1
1.0.0
SI, IEC, BS1852 compatible number formatter
github.com/mleko/js-prefix-si
mleko/js-prefix-si
prefix-si
/
index.d.ts
11 lines
(10 loc)
•
285 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
declare
function
prefix
(
value
:
number
,
unit
?:
string
,
options
?:
PrefixOptions
):
string
;
export
interface
PrefixOptions
{
binary
?:
boolean
;
fixed
?:
number
;
precision
?:
number
;
round
?:
number
;
spacer
?:
string
;
decimalMark
?:
string
;
bs1852
?:
boolean
; }