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
DisplayProperty
export type DisplayProperty = Globals | DisplayOutside | DisplayInside | DisplayInternal | DisplayLegacy | "contents" | "list-item" | "none" | string;
The extra string in the end simply disable the feature of type checking, now the display could be anything like foo or bar.
display
foo
bar
Furthermore, in Typescript, you can't get intellisense, because it could be anything. Should we remove it? Or I miss something?
Thanks :)
The text was updated successfully, but these errors were encountered:
See #8, #57, #60.
Sorry, something went wrong.
Learned something! Thanks!
No branches or pull requests
The extra string in the end simply disable the feature of type checking, now the
display
could be anything likefoo
orbar
.Furthermore, in Typescript, you can't get intellisense, because it could be anything.
Should we remove it? Or I miss something?
Thanks :)
The text was updated successfully, but these errors were encountered: