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.

platform.basic.d.ts 375B

12345678910
  1. /**
  2. * Platform class for charts without access to the DOM or to many element properties
  3. * This platform is used by default for any chart passed an OffscreenCanvas.
  4. * @extends BasePlatform
  5. */
  6. export default class BasicPlatform extends BasePlatform {
  7. acquireContext(item: any): any;
  8. updateConfig(config: any): void;
  9. }
  10. import BasePlatform from "./platform.base.js";