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
Current IframeHTMLAttributes
IframeHTMLAttributes
export interface IframeHTMLAttributes extends HTMLAttributes { allowfullscreen?: boolean; allowtransparency?: boolean; frameborder?: number | string; height?: number | string; marginheight?: number; marginwidth?: number; name?: string; sandbox?: string; scrolling?: string; seamless?: boolean; src?: string; srcdoc?: string; width?: number | string; }
It's missing the following attributes:
Just as a side-note, allowfullscreen is now a legacy attribute, allow="fullscreen" is preferred
allow="fullscreen"
The text was updated successfully, but these errors were encountered:
Update IframeHTMLAttributes
101f985
- resolves wonderful-panda#102 - adds `allow` and `referrerpolicy` to interface in "types/dom.d.ts"
Successfully merging a pull request may close this issue.
Current
IframeHTMLAttributes
It's missing the following attributes:
Just as a side-note, allowfullscreen is now a legacy attribute,
allow="fullscreen"
is preferredThe text was updated successfully, but these errors were encountered: