Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

scale.linear.d.ts 282B

12345678910
  1. export default class LinearScale extends LinearScaleBase {
  2. static id: string;
  3. /**
  4. * @type {any}
  5. */
  6. static defaults: any;
  7. getPixelForValue(value: any): number;
  8. getValueForPixel(pixel: any): number;
  9. }
  10. import LinearScaleBase from "./scale.linearbase.js";