@etsoo/appscript 1.2.41 → 1.2.42
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.
|
@@ -53,3 +53,7 @@ export interface IActionResult<D extends {} = {}> {
|
|
|
53
53
|
export declare type IdActionResult<T extends DataTypes.IdType = number> = IActionResult<{
|
|
54
54
|
id: T;
|
|
55
55
|
}>;
|
|
56
|
+
/**
|
|
57
|
+
* Action result with dynamic data
|
|
58
|
+
*/
|
|
59
|
+
export declare type DynamicActionResult = IActionResult<Record<string, any>>;
|
|
@@ -53,3 +53,7 @@ export interface IActionResult<D extends {} = {}> {
|
|
|
53
53
|
export declare type IdActionResult<T extends DataTypes.IdType = number> = IActionResult<{
|
|
54
54
|
id: T;
|
|
55
55
|
}>;
|
|
56
|
+
/**
|
|
57
|
+
* Action result with dynamic data
|
|
58
|
+
*/
|
|
59
|
+
export declare type DynamicActionResult = IActionResult<Record<string, any>>;
|
package/package.json
CHANGED