11 lines
282 B
TypeScript
Raw Normal View History

2024-08-24 20:48:14 +02:00
export default class LinearScale extends LinearScaleBase {
static id: string;
/**
* @type {any}
*/
static defaults: any;
getPixelForValue(value: any): number;
getValueForPixel(pixel: any): number;
}
import LinearScaleBase from "./scale.linearbase.js";