jsx-framework-test-pb 0.2.0 → 0.2.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.
@@ -5,3 +5,9 @@ export declare function jsxDEV(type: string | Function | symbol, props: ElementP
5
5
  lineNumber: number;
6
6
  columnNumber: number;
7
7
  }, self?: any): DevElement;
8
+ export declare namespace JSX {
9
+ type Element = import('./types').Element;
10
+ interface IntrinsicElements {
11
+ [elemName: string]: any;
12
+ }
13
+ }
@@ -2,3 +2,9 @@ import type { Element, ElementProps } from './types';
2
2
  export declare const Fragment: symbol;
3
3
  export declare function jsx(type: string | Function | symbol, props: ElementProps, key?: string): Element;
4
4
  export declare const jsxs: typeof jsx;
5
+ export declare namespace JSX {
6
+ type Element = import('./types').Element;
7
+ interface IntrinsicElements {
8
+ [elemName: string]: any;
9
+ }
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jsx-framework-test-pb",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",