1 | import { Base } from './base';
|
2 | import { ContinuousOptions, Domain, Range, NiceMethod, TickMethodOptions, Transform } from '../types';
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | export declare abstract class Continuous<O extends ContinuousOptions> extends Base<O> {
|
9 |
|
10 | protected output: Transform;
|
11 |
|
12 | protected input: Transform;
|
13 | |
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 | protected abstract chooseTransforms(): Transform[];
|
20 | protected getDefaultOptions(): O;
|
21 | |
22 |
|
23 |
|
24 | map(x: Domain<O>): any;
|
25 | |
26 |
|
27 |
|
28 | invert(x: Range<O>): any;
|
29 | protected nice(): void;
|
30 | getTicks(): (number | Date)[];
|
31 | protected getTickMethodOptions(): TickMethodOptions;
|
32 | protected chooseNice(): NiceMethod<number | Date>;
|
33 | protected rescale(): void;
|
34 | protected chooseClamp(transform: Transform): (x: number) => number;
|
35 | protected composeOutput(transform: Transform, clamp: Transform): void;
|
36 | protected composeInput(transform: Transform, untransform: Transform, clamp: Transform): void;
|
37 | }
|