-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathframeset.ts
39 lines (37 loc) · 1.34 KB
/
frameset.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* @fileoverview
*
* This file was generated. Do not modify this file directly.
*/
import type { AnyProps, GlobalAttributes } from "./lib/mod.ts";
import { renderElement } from "./lib/mod.ts";
/**
* FramesetElementProps are the props for the [`frameset`](https://developer.mozilla.org/docs/Web/HTML/Element/frameset) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/frameset>
* @deprecated
*/
export interface FramesetElementProps extends GlobalAttributes {
/**
* `cols` is an attribute of the [`frameset`](https://developer.mozilla.org/docs/Web/HTML/Element/frameset) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/frameset#cols>
* @deprecated
*/
cols?: string | undefined;
/**
* `rows` is an attribute of the [`frameset`](https://developer.mozilla.org/docs/Web/HTML/Element/frameset) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/frameset#rows>
* @deprecated
*/
rows?: string | undefined;
}
/**
* frameset renders the [`frameset`](https://developer.mozilla.org/docs/Web/HTML/Element/frameset) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/frameset>
* @deprecated
*/
export function frameset(
props?: FramesetElementProps,
...children: string[]
): string {
return renderElement("frameset", props as AnyProps, false, children);
}