blowfish/node_modules/chart.js/dist/scales/scale.linear.d.ts

11 lines
282 B
TypeScript
Raw Normal View History

2023-01-29 22:30:24 +00: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";