@dcl/react-ecs 0.0.1-3063934984.commit-cdc4e28 → 0.0.1-3100621952.commit-d6e10e5

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/index.d.ts CHANGED
@@ -17,11 +17,11 @@ export declare function Container({ width, height, children }: ContainerPropType
17
17
 
18
18
  export declare type ContainerPropTypes = Partial<CommonProps> & EntityPropTypes['uiTransform'];
19
19
 
20
- declare type EcsElements = {
20
+ export declare type EcsElements = {
21
21
  entity: Partial<EntityComponents & CommonProps>;
22
22
  };
23
23
 
24
- declare type EntityComponents = {
24
+ export declare type EntityComponents = {
25
25
  uiTransform: PBUiTransform;
26
26
  uiText: PBUiText;
27
27
  };
@@ -40,11 +40,11 @@ export declare enum Font {
40
40
  UNRECOGNIZED = -1
41
41
  }
42
42
 
43
- declare namespace JSX {
44
- interface Element {
43
+ export declare namespace JSX {
44
+ export interface Element {
45
45
  }
46
- type IntrinsicElements = EcsElements;
47
- interface Component {
46
+ export type IntrinsicElements = EcsElements;
47
+ export interface Component {
48
48
  }
49
49
  }
50
50