next-flow-interface 0.24.19 → 0.24.20
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 +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2954,6 +2954,7 @@ export declare class MixPartialData {
|
|
|
2954
2954
|
push(attribute: BaseAttribute, path: string | RvPath, value: unknown): void
|
|
2955
2955
|
forEach(callback: (attribute: BaseAttribute, path: RvPath, value: unknown) => void): void
|
|
2956
2956
|
forEachWithStringPath(callback: (attribute: BaseAttribute, path: string, value: unknown) => void): void
|
|
2957
|
+
toPartialData(): PartialData
|
|
2957
2958
|
}
|
|
2958
2959
|
|
|
2959
2960
|
/**
|
|
@@ -3569,6 +3570,7 @@ export declare class PartialData {
|
|
|
3569
3570
|
push(path: string | RvPath, value: unknown): void
|
|
3570
3571
|
forEach(callback: (path: RvPath, value: unknown) => void): void
|
|
3571
3572
|
forEachWithStringPath(callback: (path: string, value: unknown) => void): void
|
|
3573
|
+
toMixPartialData(attribute: BaseAttribute): MixPartialData
|
|
3572
3574
|
}
|
|
3573
3575
|
|
|
3574
3576
|
/**
|