next-flow-interface 0.24.23 → 0.24.24
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/index.d.ts +6 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2948,12 +2948,12 @@ export declare type MessageType = 'info' | 'warning' | 'error' | 'success'
|
|
|
2948
2948
|
*/
|
|
2949
2949
|
export declare class MixPartialData {
|
|
2950
2950
|
data: Set<MixPartialDataItem>
|
|
2951
|
-
constructor(data?: [BaseAttribute
|
|
2951
|
+
constructor(data?: [BaseAttribute<any>, string | RvPath, unknown][])
|
|
2952
2952
|
toMap(): Map<string, MixPartialDataItem>
|
|
2953
2953
|
toRecord(): Record<string, MixPartialDataItem>
|
|
2954
|
-
push(attribute: BaseAttribute
|
|
2955
|
-
forEach(callback: (attribute: BaseAttribute
|
|
2956
|
-
forEachWithStringPath(callback: (attribute: BaseAttribute
|
|
2954
|
+
push(attribute: BaseAttribute<any>, path: string | RvPath, value: unknown): void
|
|
2955
|
+
forEach(callback: (attribute: BaseAttribute<any>, path: RvPath, value: unknown) => void): void
|
|
2956
|
+
forEachWithStringPath(callback: (attribute: BaseAttribute<any>, path: string, value: unknown) => void): void
|
|
2957
2957
|
toPartialData(): PartialData
|
|
2958
2958
|
get size(): number
|
|
2959
2959
|
}
|
|
@@ -2962,7 +2962,7 @@ export declare class MixPartialData {
|
|
|
2962
2962
|
* @public
|
|
2963
2963
|
*/
|
|
2964
2964
|
export declare interface MixPartialDataItem {
|
|
2965
|
-
attribute: BaseAttribute
|
|
2965
|
+
attribute: BaseAttribute<any>
|
|
2966
2966
|
path: RvPath
|
|
2967
2967
|
value: unknown
|
|
2968
2968
|
}
|
|
@@ -3589,7 +3589,7 @@ export declare class PartialData {
|
|
|
3589
3589
|
push(path: string | RvPath, value: unknown): void
|
|
3590
3590
|
forEach(callback: (path: RvPath, value: unknown) => void): void
|
|
3591
3591
|
forEachWithStringPath(callback: (path: string, value: unknown) => void): void
|
|
3592
|
-
toMixPartialData(attribute: BaseAttribute): MixPartialData
|
|
3592
|
+
toMixPartialData(attribute: BaseAttribute<any>): MixPartialData
|
|
3593
3593
|
get size(): number
|
|
3594
3594
|
}
|
|
3595
3595
|
|