UNPKG
@formant/ava-react
Version:
latest (3.3.33-formant)
3.3.33-formant
3.3.32-formant
3.3.31-formant
3.3.30-formant
3.3.29-formant
3.3.28-formant
3.3.26-formant
3.3.25-formant
3.3.23-formant
3.3.22-formant
3.3.21-formant
3.3.20-formant
3.3.18-formant
3.3.17-formant
3.3.16-formant
3.3.15-formant
3.3.14-formant
3.3.13-formant
3.3.12-formant
3.3.11-formant
3.3.10-formant
3.3.9-formant
3.3.8-formant
3.3.7-formant
3.3.6-formant
3.3.5-formant
3.3.4-formant
3.3.2-formant
React components of AVA.
ava.antv.antgroup.com
FormantIO/AVA
@formant/ava-react
/
lib
/
NarrativeTextVis
/
line-charts
/
line
/
scaleLinear.d.ts
5 lines
(4 loc)
•
195 B
TypeScript
View Raw
1
2
3
4
5
export
type
Domain
= [
number
,
number
];
export
type
Range
= [
number
,
number
];
export
type
Scale
=
(
n
:
number
) =>
number
;
export
declare
const
scaleLinear
:
(
domain
:
Domain
,
range
:
Range
) =>
Scale
;