getInstances method

  1. @JSExport()
JSPromise<JSArray<JSNumber>> getInstances(
  1. ThermionEntity entity
)

Implementation

@JSExport()
JSPromise<JSArray<JSNumber>> getInstances(ThermionEntity entity) {
  return viewer
      .getInstances(entity)
      .then((instances) =>
          instances.map((instance) => instance.toJS).toList().toJS)
      .toJS;
}