Skip to content

Commit 2c6d1bb

Browse files
[DOCS] Fixing references to Node.js methods (#26933)
Porting: #26927
1 parent fc97aaa commit 2c6d1bb

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

docs/sphinx_setup/api/nodejs_api/nodejs_api.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ API Development
4343

4444
OpenVINO 2024.4 has introduced the following methods:
4545

46-
- Model.clone()
47-
- Model.getoutputelementtype()
48-
- CompiledModel getProperty()
49-
- CompiledModel.setProperty()
46+
- :ref:`Model.clone() <clone>`
47+
- :ref:`Model.getOutputElementType() <getOutputElementType>`
48+
- :ref:`CompiledModel.getProperty() <getProperty>`
49+
- :ref:`CompiledModel.setProperty() <setProperty>`
5050

5151

5252
Additional Resources

docs/sphinx_setup/api/nodejs_api/openvino-node/interfaces/CompiledModel.rst

+1
Original file line numberDiff line numberDiff line change
@@ -243,6 +243,7 @@ Methods
243243

244244

245245
.. rubric:: setProperty
246+
:name: setProperty
246247

247248
*
248249

docs/sphinx_setup/api/nodejs_api/openvino-node/interfaces/Model.rst

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Interface Model
44
.. code-block:: ts
55
66
interface Model {
7+
clone(): Model;
78
inputs: Output[];
89
outputs: Output[];
910
getFriendlyName(): string;
@@ -59,6 +60,7 @@ Methods
5960
#####################
6061

6162
.. rubric:: clone
63+
:name: clone
6264

6365
*
6466

@@ -143,6 +145,7 @@ Methods
143145
`addon.ts:198 <https://github.com/openvinotoolkit/openvino/blob/master/src/bindings/js/node/lib/addon.ts#L198>`__
144146

145147
.. rubric:: getOutputElementType
148+
:name: getOutputElementType
146149

147150
*
148151

0 commit comments

Comments
 (0)