@zealicsolutions/web-ui 1.0.44-beta-11 → 1.0.44-beta-12
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/dist/cjs/contexts/ApiContext/ApiContext.d.ts +2 -2
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/typescript.d.ts +3 -0
- package/dist/esm/containers/FormContainer.js +1 -1
- package/dist/esm/contexts/ApiContext/ApiContext.d.ts +2 -2
- package/dist/esm/contexts/ApiContext/ApiContext.js +1 -1
- package/dist/esm/contexts/ApiContext/ApiContext.js.map +1 -1
- package/dist/esm/typescript.d.ts +3 -0
- package/dist/index.d.ts +2 -3
- package/package.json +1 -1
package/dist/cjs/typescript.d.ts
CHANGED
@@ -14,4 +14,7 @@ declare type StrictUnionHelper<T, TAll> = T extends any ? T & Partial<Record<Exc
|
|
14
14
|
export declare type StrictUnion<T> = StrictUnionHelper<T, T>;
|
15
15
|
export declare type AnyObject = Record<string, unknown>;
|
16
16
|
export declare type LooseObject = Record<string, any>;
|
17
|
+
export declare type ResponseDTO<T> = {
|
18
|
+
readonly data: T;
|
19
|
+
};
|
17
20
|
export {};
|