Skip to content

Commit

Permalink
add enum values in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jjspace committed Nov 25, 2024
1 parent d066248 commit 77a45d8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/engine/Source/Core/ITwinPlatform.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ import RuntimeError from "./RuntimeError.js";
const ITwinPlatform = {};

/**
* Status states for a mesh-export export
* Status states for a mesh-export export.
* Valid values are: <code>NotStarted</code>, <code>InProgress</code>, <code>Complete</code>, <code>Invalid</code>
* @enum {string}
*/
ITwinPlatform.ExportStatus = Object.freeze({
Expand All @@ -26,7 +27,8 @@ ITwinPlatform.ExportStatus = Object.freeze({
});

/**
* Types of mesh-export exports. CesiumJS only supports loading <code>3DTILES</code> type exports
* Types of mesh-export exports. CesiumJS only supports loading <code>3DTILES</code> type exports.
* Valid values are: <code>IMODEL</code>, <code>CESIUM</code>, <code>3DTILES</code>
* @enum {string}
*/
ITwinPlatform.ExportType = Object.freeze({
Expand Down

0 comments on commit 77a45d8

Please sign in to comment.