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.

controller.line.d.ts 322B

12345678910111213
  1. export default class LineController extends DatasetController {
  2. static id: string;
  3. /**
  4. * @type {any}
  5. */
  6. static overrides: any;
  7. update(mode: any): void;
  8. /**
  9. * @protected
  10. */
  11. protected getMaxOverflow(): any;
  12. }
  13. import DatasetController from "../core/core.datasetController.js";