chore(types): cleanup #5420

This commit is contained in:
moklick
2025-08-07 07:32:22 +02:00
parent 552ff4da4e
commit 195b4b4f76
4 changed files with 3 additions and 8 deletions

View File

@@ -72,10 +72,7 @@ export type Edge<
/**
* General escape hatch for adding custom attributes to the edge's DOM element.
*/
domAttributes?: Omit<
SVGAttributes<SVGGElement>,
'id' | 'style' | 'className' | 'role' | 'aria-label' | 'defaultValue'
>;
domAttributes?: Omit<SVGAttributes<SVGGElement>, 'id' | 'style' | 'className' | 'role' | 'aria-label'>;
};
type SmoothStepEdge<EdgeData extends Record<string, unknown> = Record<string, unknown>> = Edge<

View File

@@ -35,7 +35,7 @@ export type Edge<
*/
domAttributes?: Omit<
SVGAttributes<SVGGElement>,
'id' | 'style' | 'class' | 'role' | 'aria-label' | 'defaultValue'
'id' | 'style' | 'class' | 'role' | 'aria-label'
>;
};

View File

@@ -38,7 +38,6 @@ export type Node<
| 'draggable'
| 'role'
| 'aria-label'
| 'defaultValue'
| keyof DOMAttributes<HTMLDivElement>
>;
};