xstate 5.5.0 → 5.5.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.
|
@@ -105,7 +105,11 @@ export type TypegenConstraint = TypegenEnabled | TypegenDisabled;
|
|
|
105
105
|
/**
|
|
106
106
|
* @deprecated Always resolves to `true`
|
|
107
107
|
*/
|
|
108
|
-
export type AreAllImplementationsAssumedToBeProvided<_TResolvedTypesMeta, _TMissingImplementations> = true;
|
|
108
|
+
export type AreAllImplementationsAssumedToBeProvided<_TResolvedTypesMeta, _TMissingImplementations = never> = true;
|
|
109
|
+
/**
|
|
110
|
+
* @deprecated Always resolves to `never`
|
|
111
|
+
*/
|
|
112
|
+
export type MissingImplementationsError<_TResolvedTypesMeta, _TMissingImplementations = never> = never;
|
|
109
113
|
/**
|
|
110
114
|
* @deprecated
|
|
111
115
|
*/
|