Comparing version 0.5.33 to 0.5.34
@@ -162,2 +162,3 @@ import { FC } from 'react'; | ||
declare function ready_from<T>(source: Reactionable<T>): ReadySignal<T>; | ||
declare function ready_resolved(): ReadySignal<void>; | ||
declare function ready_resolved<T>(value: T): ReadySignal<T>; | ||
@@ -164,0 +165,0 @@ declare function stop_signal(): StopSignal; |
{ | ||
"name": "realar", | ||
"version": "0.5.33", | ||
"version": "0.5.34", | ||
"description": "React state manager", | ||
@@ -88,3 +88,3 @@ "repository": { | ||
}, | ||
"gitHead": "4659c14ddebc94135dbf9cb5c3c85ad0f837274e" | ||
"gitHead": "3bcf4b65be160a0e54324b4e2dc17ce3efa444e2" | ||
} |
@@ -310,3 +310,5 @@ import React, { Context, FC } from 'react'; | ||
function ready_resolved<T>(value: T): ReadySignal<T> { | ||
function ready_resolved(): ReadySignal<void> | ||
function ready_resolved<T>(value: T): ReadySignal<T>; | ||
function ready_resolved(value?: any): any { | ||
const r = ready(value); | ||
@@ -313,0 +315,0 @@ r(value); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77212
1432