mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-22 07:01:53 +02:00
11 lines
282 B
TypeScript
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";
|