line-component.js 499 B

123456789101112131415
  1. import { Component } from "../core/models/components/component";
  2. import { ComponentOptions } from "../core/models/components/component-options";
  3. import { LineDrawer } from "../components/line-component/drawers/line-drawer";
  4. class LineComponent extends Component {
  5. constructor() {
  6. const options = new ComponentOptions(
  7. "aa5962d0-8f90-45b3-91db-61e0de6809ae",
  8. "Line",
  9. "line"
  10. );
  11. super(new LineDrawer(), options);
  12. }
  13. }
  14. export const lineComponent = new LineComponent();