-
Notifications
You must be signed in to change notification settings - Fork 189
Closed
Labels
bugSomething isn’t workingSomething isn’t working
Description
I believe these two should be using Omit<DotOptions, "symbol">
rather than Exclude<DotOptions, "symbol">
:
Line 141 in 7d18179
export function circle(data?: Data, options?: Exclude<DotOptions, "symbol">): Dot; |
Line 144 in 7d18179
export function hexagon(data?: Data, options?: Exclude<DotOptions, "symbol">): Dot; |
(Exclude
filters out members from unions, whereas Omit
filters out properties)
mbostock and Fil
Metadata
Metadata
Assignees
Labels
bugSomething isn’t workingSomething isn’t working