react-dialogger 1.1.107 → 1.1.108

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dialogger",
3
- "version": "1.1.107",
3
+ "version": "1.1.108",
4
4
  "description": "This package is a continuation of the react-araci package. Due to an error, react-araci was removed, and it has been decided to continue under the new package name react-dialogger",
5
5
  "main": "index.js",
6
6
  "author": "Sueleyman Topaloglu",
@@ -259,8 +259,8 @@ export type Dialogify<T> = T extends Function ? never : T extends string | numbe
259
259
  } : never;
260
260
  export type DialogExternalHandlerFn = (...args: any[]) => any;
261
261
  export type DialogExternalHandlers = Record<string, DialogExternalHandlerFn>;
262
- export type DialogExternalRef = {
263
- current: unknown;
262
+ export type DialogExternalRef<T = unknown> = {
263
+ current: T | null;
264
264
  };
265
265
  export type DialogExternalRefs = {
266
266
  [key: string]: DialogExternalRef;