You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
485 B
10 lines
485 B
import { Continuous } from './continuous';
|
|
import { TickMethodOptions, TimeOptions } from '../types';
|
|
export declare class Time extends Continuous<TimeOptions> {
|
|
protected getDefaultOptions(): TimeOptions;
|
|
protected chooseTransforms(): (((x: Date) => number) | ((x: number) => Date))[];
|
|
protected chooseNice(): import("../types").NiceMethod<Date>;
|
|
protected getTickMethodOptions(): TickMethodOptions<Date>;
|
|
getFormatter(): (d: Date) => string;
|
|
clone(): Time;
|
|
}
|
|
|