-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobject.ts
103 lines (101 loc) · 4.17 KB
/
object.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/**
* @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";
/**
* ObjectElementProps are the props for the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object>
*/
export interface ObjectElementProps extends GlobalAttributes {
/**
* `archive` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#archive>
* @deprecated
*/
archive?: string | undefined;
/**
* `border` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#border>
* @deprecated
*/
border?: string | undefined;
/**
* `classid` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#classid>
* @deprecated
*/
classid?: string | undefined;
/**
* `codebase` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#codebase>
* @deprecated
*/
codebase?: string | undefined;
/**
* `codetype` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#codetype>
* @deprecated
*/
codetype?: string | undefined;
/**
* `data` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#data>
*/
data?: string | undefined;
/**
* `declare` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#declare>
* @deprecated
*/
declare?: string | undefined;
/**
* `form` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#form>
*/
form?: string | undefined;
/**
* `height` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#height>
*/
height?: string | undefined;
/**
* `name` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#name>
*/
name?: string | undefined;
/**
* `standby` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#standby>
* @deprecated
*/
standby?: string | undefined;
/**
* `type` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#type>
*/
type?: string | undefined;
/**
* `usemap` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#usemap>
* @deprecated
*/
usemap?: string | undefined;
/**
* `width` is an attribute of the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object#width>
*/
width?: string | undefined;
}
/**
* object renders the [`object`](https://developer.mozilla.org/docs/Web/HTML/Element/object) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/object>
*/
export function object(
props?: ObjectElementProps,
...children: string[]
): string {
return renderElement("object", props as AnyProps, false, children);
}