@stryke/types 0.8.6 → 0.8.8

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/base.d.ts CHANGED
@@ -207,7 +207,7 @@ export interface Typed {
207
207
  /**
208
208
  * The type of the record
209
209
  */
210
- __typename: string;
210
+ __type: string;
211
211
  }
212
212
  export interface ClassTypeCheckable<T> extends Typed {
213
213
  /**
@@ -1,3 +1,4 @@
1
+ export type EventListener = (event: Event) => void;
1
2
  export interface BatteryManager {
2
3
  supported: boolean;
3
4
  loading: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stryke/types",
3
- "version": "0.8.6",
3
+ "version": "0.8.8",
4
4
  "type": "module",
5
5
  "description": "A package containing many base TypeScript type definitions that are shared across many projects.",
6
6
  "repository": {
@@ -292,5 +292,5 @@
292
292
  "main": "./dist/index.cjs",
293
293
  "module": "./dist/index.mjs",
294
294
  "types": "./dist/index.d.ts",
295
- "gitHead": "a8c829509eefd6d8e5fcdc84bd5b9a0b8e02ee7e"
295
+ "gitHead": "9ad3e3608ebc05bf2f02848ad83d50f5476c9f6f"
296
296
  }