radiantassure/Bootstrap/vendor/chart.js/scales/scale.linear.d.ts
2025-12-07 09:35:13 +00:00

11 lines
282 B
TypeScript
Executable File

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