File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Sources/Rendering/Misc/RemoteView Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
import { vtkObject } from '../../../interfaces' ;
2
2
import vtkCanvasView from '../CanvasView' ;
3
+ import vtkImageStream from '../../../IO/Core/ImageStream' ;
3
4
import vtkViewStream from '../../../IO/Core/ImageStream/ViewStream' ;
4
5
5
6
interface IRemoteViewInitialValues {
@@ -188,13 +189,18 @@ export function newInstance(
188
189
initialValues ?: IRemoteViewInitialValues
189
190
) : vtkRemoteView ;
190
191
191
- export function connectImageStream ( session : any ) : any ;
192
+ export function connectImageStream ( session : any ) : void ;
193
+
194
+ export function disconnectImageStream ( ) : void ;
195
+
192
196
/**
193
197
* vtkRemoteView provides a way to create a remote view.
194
198
*/
195
199
export declare const vtkRemoteView : {
196
200
newInstance : typeof newInstance ;
197
201
extend : typeof extend ;
202
+ SHARED_IMAGE_STREAM : vtkImageStream ;
198
203
connectImageStream : typeof connectImageStream ;
204
+ disconnectImageStream : typeof disconnectImageStream ;
199
205
} ;
200
206
export default vtkRemoteView ;
You can’t perform that action at this time.
0 commit comments