taon 21.0.32 → 21.0.34

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taon/websql",
3
- "version": "21.0.32",
3
+ "version": "21.0.34",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.0.0",
6
6
  "@angular/core": "^21.0.0"
@@ -2014,9 +2014,9 @@ declare namespace Taon {
2014
2014
  const removeLoader: (afterMS?: number) => Promise<void>;
2015
2015
  const error: (opt: Pick<RestErrorResponseWrapper, "message" | "status" | "details" | "code"> | string) => void;
2016
2016
  type ResponseHtml = Models.Http.Response<string>;
2017
- export import Response = Models.Http.Response;
2018
- export import StartParams = Models.StartParams;
2019
- const getResponseValue: <T>(response: Response<T>, options?: {
2017
+ type Response<T = string> = Models.Http.Response<T>;
2018
+ type StartParams = Models.StartParams;
2019
+ const getResponseValue: <T>(response: Models.Http.Response<T>, options?: {
2020
2020
  req: express.Request<any>;
2021
2021
  res: express.Response<any>;
2022
2022
  }) => Promise<T>;