All public typings of the CustomJS Utils are now globally accessible, import
statements are not required anymore.
The typings can be found within the Cbn.CJS
namespace.
Usage in JSDoc:
const image = /** @type {Cbn.CJS.HiveImage} */ (CmpUtils.getRecordCmpColValue(CmpNames.Component, RecordCol.Image));
Usage in Type Decleration:
interface DemoITF {
Image: Cbn.CJS.HiveImage;
Value: Cbn.CJS.CmpValue;
Listener: Cbn.CJS.CmpValueChangedListener;
}
Generated using TypeDoc