@ethlete/cdk 4.61.0 → 4.61.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/CHANGELOG.md +6 -0
- package/fesm2022/ethlete-cdk.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -10465,7 +10465,7 @@ type NavigationDismissCheckerRef<T> = {
|
|
|
10465
10465
|
* @returns `true` if the form has no changes or the user confirmed to discard the changes.
|
|
10466
10466
|
* `false` if the user wants to keep the changes.
|
|
10467
10467
|
*/
|
|
10468
|
-
runCheck: (
|
|
10468
|
+
runCheck: () => unknown | Promise<unknown> | Observable<unknown>;
|
|
10469
10469
|
/**
|
|
10470
10470
|
* Restore the default form value to the form.
|
|
10471
10471
|
*/
|