jsx-framework-test-pb 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +0 -29
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -17,32 +17,3 @@ export interface ElementProps {
|
|
|
17
17
|
[key: string]: any;
|
|
18
18
|
}
|
|
19
19
|
export type ElementChild = Element | string | number | boolean | null | undefined;
|
|
20
|
-
declare global {
|
|
21
|
-
namespace JSX {
|
|
22
|
-
interface Element {
|
|
23
|
-
}
|
|
24
|
-
interface IntrinsicElements {
|
|
25
|
-
div: ElementProps;
|
|
26
|
-
span: ElementProps;
|
|
27
|
-
h1: ElementProps;
|
|
28
|
-
h2: ElementProps;
|
|
29
|
-
h3: ElementProps;
|
|
30
|
-
h4: ElementProps;
|
|
31
|
-
h5: ElementProps;
|
|
32
|
-
h6: ElementProps;
|
|
33
|
-
p: ElementProps;
|
|
34
|
-
button: ElementProps;
|
|
35
|
-
input: ElementProps;
|
|
36
|
-
a: ElementProps;
|
|
37
|
-
img: ElementProps;
|
|
38
|
-
ul: ElementProps;
|
|
39
|
-
ol: ElementProps;
|
|
40
|
-
li: ElementProps;
|
|
41
|
-
[elemName: string]: ElementProps;
|
|
42
|
-
}
|
|
43
|
-
interface ElementChildrenAttribute {
|
|
44
|
-
children: {};
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
export {};
|