vue-tsx-support icon indicating copy to clipboard operation
vue-tsx-support copied to clipboard

IframeHTMLAttributes is missing properties

Open moonquddus opened this issue 2 years ago • 0 comments

Current 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

moonquddus avatar Jul 07 '22 09:07 moonquddus