From 101f9850f6d2aa02e8aadd2ac3addc797191eb6f Mon Sep 17 00:00:00 2001 From: Moon Quddus Date: Thu, 7 Jul 2022 10:25:19 +0100 Subject: [PATCH] Update IframeHTMLAttributes - resolves #102 - adds `allow` and `referrerpolicy` to interface in "types/dom.d.ts" --- types/dom.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/dom.d.ts b/types/dom.d.ts index 63ea2e6..b790202 100644 --- a/types/dom.d.ts +++ b/types/dom.d.ts @@ -129,6 +129,7 @@ export interface HtmlHTMLAttributes extends HTMLAttributes { } export interface IframeHTMLAttributes extends HTMLAttributes { + allow?: string; allowfullscreen?: boolean; allowtransparency?: boolean; frameborder?: number | string; @@ -136,6 +137,7 @@ export interface IframeHTMLAttributes extends HTMLAttributes { marginheight?: number; marginwidth?: number; name?: string; + referrerpolicy?: string; sandbox?: string; scrolling?: string; seamless?: boolean;