Files
motovaultpro/wwwroot/lib/chart-js/scales/scale.linear.d.ts
Eric Gullickson f7eca4bad5 first commit
2025-07-15 20:34:05 -05: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";