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.

15 lines
490 B

4 months ago
import { Continuous } from './continuous';
import { LogOptions, TickMethodOptions } from '../types';
/**
* Linear
*
* 线
*/
export declare class Log extends Continuous<LogOptions> {
protected getDefaultOptions(): LogOptions;
protected chooseNice(): import("../types").TickMethod<number>;
protected getTickMethodOptions(): TickMethodOptions<number>;
protected chooseTransforms(): ((x: number) => number)[];
clone(): Log;
}