blowfish/node_modules/chart.js/dist/scales/scale.linear.d.ts
2023-01-29 22:30:24 +00:00

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