-
Notifications
You must be signed in to change notification settings - Fork 0
/
param.ts
48 lines (46 loc) · 1.75 KB
/
param.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
/**
* @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";
/**
* ParamElementProps are the props for the [`param`](https://developer.mozilla.org/docs/Web/HTML/Element/param) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/param>
* @deprecated
*/
export interface ParamElementProps extends GlobalAttributes {
/**
* `name` is an attribute of the [`param`](https://developer.mozilla.org/docs/Web/HTML/Element/param) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/param#name>
* @deprecated
*/
name?: string | undefined;
/**
* `type` is an attribute of the [`param`](https://developer.mozilla.org/docs/Web/HTML/Element/param) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/param#type>
* @deprecated
*/
type?: string | undefined;
/**
* `value` is an attribute of the [`param`](https://developer.mozilla.org/docs/Web/HTML/Element/param) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/param#value>
* @deprecated
*/
value?: string | undefined;
/**
* `valuetype` is an attribute of the [`param`](https://developer.mozilla.org/docs/Web/HTML/Element/param) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/param#valuetype>
* @deprecated
*/
valuetype?: string | undefined;
}
/**
* param renders the [`param`](https://developer.mozilla.org/docs/Web/HTML/Element/param) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/param>
* @deprecated
*/
export function param(props?: ParamElementProps): string {
return renderElement("param", props as AnyProps, true);
}