next-flow-interface 0.24.21 → 0.24.22
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
|
@@ -2955,6 +2955,7 @@ export declare class MixPartialData {
|
|
|
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
2957
|
toPartialData(): PartialData
|
|
2958
|
+
get size(): number
|
|
2958
2959
|
}
|
|
2959
2960
|
|
|
2960
2961
|
/**
|
|
@@ -3571,6 +3572,7 @@ export declare class PartialData {
|
|
|
3571
3572
|
forEach(callback: (path: RvPath, value: unknown) => void): void
|
|
3572
3573
|
forEachWithStringPath(callback: (path: string, value: unknown) => void): void
|
|
3573
3574
|
toMixPartialData(attribute: BaseAttribute): MixPartialData
|
|
3575
|
+
get size(): number
|
|
3574
3576
|
}
|
|
3575
3577
|
|
|
3576
3578
|
/**
|