Anurag Vohra
Anurag Vohra

Reputation: 1973

Create JSDOC annotations for a imported third party class with no JSDOC available?

I am using quickjs JS Engine, which provide means to export native classes (written in C++) to be imported in as ES module in the regular JS code.

import {NativeClass} from "libSomeAwesomeCode.so";

This Native class have properties and methods with params. How do I define the JSDOC for this class (this class is written in C) ?

Upvotes: 1

Views: 30

Answers (0)

Related Questions