We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Exclude
I believe these two should be using Omit<DotOptions, "symbol"> rather than Exclude<DotOptions, "symbol">:
Omit<DotOptions, "symbol">
Exclude<DotOptions, "symbol">
plot/src/marks/dot.d.ts
Line 141 in 7d18179
Line 144 in 7d18179
(Exclude filters out members from unions, whereas Omit filters out properties)
Omit
The text was updated successfully, but these errors were encountered:
Thanks for the report. Agreed.
Sorry, something went wrong.
b870b48
closes #2257
14d6e43
Successfully merging a pull request may close this issue.
I believe these two should be using
Omit<DotOptions, "symbol">
rather thanExclude<DotOptions, "symbol">
:plot/src/marks/dot.d.ts
Line 141 in 7d18179
plot/src/marks/dot.d.ts
Line 144 in 7d18179
(
Exclude
filters out members from unions, whereasOmit
filters out properties)The text was updated successfully, but these errors were encountered: