@edenapp/types 0.1.0 → 0.1.1

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/global.d.ts CHANGED
@@ -47,7 +47,7 @@ interface EdenAPI {
47
47
  isEventSupported(event: string): Promise<boolean>;
48
48
  }
49
49
 
50
- interface Window {
50
+ export interface Window {
51
51
  /**
52
52
  * Eden API instance available only in renderer processes
53
53
  */
package/index.d.ts CHANGED
@@ -4,6 +4,8 @@ export * from "./EdenConfig";
4
4
 
5
5
  export * from "./AppManifest";
6
6
 
7
+ export * from "./global";
8
+
7
9
  /**
8
10
  * App Instance Interface
9
11
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edenapp/types",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "TypeScript type definitions for the Eden platform",
5
5
  "types": "index.d.ts",
6
6
  "author": "Dariusz Majnert",