Skip to content

Commit 101f985

Browse files
committed
Update IframeHTMLAttributes
- resolves wonderful-panda#102 - adds `allow` and `referrerpolicy` to interface in "types/dom.d.ts"
1 parent c3fbd76 commit 101f985

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

types/dom.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,15 @@ export interface HtmlHTMLAttributes extends HTMLAttributes {
129129
}
130130

131131
export interface IframeHTMLAttributes extends HTMLAttributes {
132+
allow?: string;
132133
allowfullscreen?: boolean;
133134
allowtransparency?: boolean;
134135
frameborder?: number | string;
135136
height?: number | string;
136137
marginheight?: number;
137138
marginwidth?: number;
138139
name?: string;
140+
referrerpolicy?: string;
139141
sandbox?: string;
140142
scrolling?: string;
141143
seamless?: boolean;

0 commit comments

Comments
 (0)