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.

simpleArc.d.ts 246B

123456789101112
  1. export class simpleArc {
  2. constructor(opts: any);
  3. x: any;
  4. y: any;
  5. radius: any;
  6. pathSegment(ctx: any, bounds: any, opts: any): boolean;
  7. interpolate(point: any): {
  8. x: any;
  9. y: any;
  10. angle: any;
  11. };
  12. }