babylonjs-accessibility 7.29.0 → 7.30.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -4,6 +4,7 @@ declare module BABYLON.Accessibility {
|
|
4
4
|
|
5
5
|
|
6
6
|
|
7
|
+
/// <reference types="react" />
|
7
8
|
/**
|
8
9
|
* The scene tree of the HTML twin. It contain all the top level nodes
|
9
10
|
* @param props
|
@@ -12,7 +13,7 @@ declare module BABYLON.Accessibility {
|
|
12
13
|
export function HTMLTwinSceneTree(props: {
|
13
14
|
scene: BABYLON.Scene;
|
14
15
|
options: IHTMLTwinRendererOptions;
|
15
|
-
}):
|
16
|
+
}): JSX.Element;
|
16
17
|
|
17
18
|
|
18
19
|
/// <reference types="react" />
|
@@ -85,6 +86,7 @@ declare module BABYLON.Accessibility {
|
|
85
86
|
}
|
86
87
|
|
87
88
|
|
89
|
+
/// <reference types="react" />
|
88
90
|
/**
|
89
91
|
* An adapter that transforms a Accessible entity in a React element. Contains observables for the events that can
|
90
92
|
* change the state of the entity or the accesible tree.
|
@@ -95,7 +97,7 @@ declare module BABYLON.Accessibility {
|
|
95
97
|
node: AccessibilityEntity;
|
96
98
|
scene: BABYLON.Scene;
|
97
99
|
options: IHTMLTwinRendererOptions;
|
98
|
-
}):
|
100
|
+
}): JSX.Element | null;
|
99
101
|
|
100
102
|
|
101
103
|
/**
|