Skip to content

Commit

Permalink
chore: Ignore broken types
Browse files Browse the repository at this point in the history
  • Loading branch information
sidharthv96 committed Oct 2, 2024
1 parent bb521f7 commit df1fba7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export const filledCircle = (
const radius = 7;
const { cssStyles } = node;

// @ts-expect-error shapeSvg d3 class is incorrect?
const rc = rough.svg(shapeSvg);
const { nodeBorder } = themeVariables;
const options = userNodeOverrides(node, { fillStyle: 'solid' });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const lightningBolt = (parent: SVG, node: Node) => {
{ x: 2 * gap, y: height - gap / 2 },
];

// @ts-expect-error shapeSvg d3 class is incorrect?
const rc = rough.svg(shapeSvg);
const options = userNodeOverrides(node, {});

Expand Down

0 comments on commit df1fba7

Please sign in to comment.