Files
flask-formula10/chartjs/dist/scales/scale.linear.d.ts
2024-03-03 01:01:07 +01:00

11 lines
282 B
TypeScript

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";