js-moi-utils
Version:
Collection of utility functions used in js-moi-sdk.
13 lines • 456 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AssetStandard = void 0;
/**
* Enumerates the standard of assets in the system.
* MAS is moi asset standard.
*/
var AssetStandard;
(function (AssetStandard) {
AssetStandard[AssetStandard["MAS0"] = 0] = "MAS0";
AssetStandard[AssetStandard["MAS1"] = 1] = "MAS1";
})(AssetStandard || (exports.AssetStandard = AssetStandard = {}));
//# sourceMappingURL=asset.js.map