modrinthjs
Version:
A type safe Modrinth implementation.
16 lines (15 loc) • 516 B
JavaScript
;
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
Object.defineProperty(exports, "__esModule", { value: true });
exports.AlgorithmIdentifier = void 0;
/**
* The algorithm of the hash
*/
var AlgorithmIdentifier;
(function (AlgorithmIdentifier) {
AlgorithmIdentifier["SHA1"] = "sha1";
AlgorithmIdentifier["SHA512"] = "sha512";
})(AlgorithmIdentifier || (exports.AlgorithmIdentifier = AlgorithmIdentifier = {}));