next-flow-interface 0.17.32 → 0.18.2
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/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1017,7 +1017,7 @@ interface RsSelectionServiceApi {
|
|
|
1017
1017
|
|
|
1018
1018
|
interface RsClickApi {
|
|
1019
1019
|
simplifyDoneList(): void;
|
|
1020
|
-
show(position: V3, color: string,
|
|
1020
|
+
show(position: V3, color: string, timestamp: number, id?: string): void;
|
|
1021
1021
|
}
|
|
1022
1022
|
|
|
1023
1023
|
interface RsEnvironmentApi {
|
|
@@ -1689,7 +1689,7 @@ interface RvAwarenessDevice {
|
|
|
1689
1689
|
}
|
|
1690
1690
|
interface RvAwarenessClick {
|
|
1691
1691
|
position: V3;
|
|
1692
|
-
|
|
1692
|
+
timestamp: number;
|
|
1693
1693
|
}
|
|
1694
1694
|
interface RvAwarenessWindow {
|
|
1695
1695
|
innerWidth: number;
|
package/package.json
CHANGED