UNPKG

typerinth

Version:

A TypeScript library for interacting with the Modrinth API.

18 lines (17 loc) 1.8 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.VersionNotFoundError = exports.LicenseNotFoundError = exports.UserProjectsNotFoundError = exports.UserNotFoundError = exports.ProjectNotFoundError = exports.ApiError = exports.UnexpectedApiError = void 0; const UnexpectedApiError_1 = require("./api/UnexpectedApiError"); Object.defineProperty(exports, "UnexpectedApiError", { enumerable: true, get: function () { return UnexpectedApiError_1.UnexpectedApiError; } }); const ApiError_1 = require("./api/ApiError"); Object.defineProperty(exports, "ApiError", { enumerable: true, get: function () { return ApiError_1.ApiError; } }); const ProjectNotFoundError_1 = require("./projects/ProjectNotFoundError"); Object.defineProperty(exports, "ProjectNotFoundError", { enumerable: true, get: function () { return ProjectNotFoundError_1.ProjectNotFoundError; } }); const UserNotFoundError_1 = require("./users/UserNotFoundError"); Object.defineProperty(exports, "UserNotFoundError", { enumerable: true, get: function () { return UserNotFoundError_1.UserNotFoundError; } }); const UserProjectsNotFoundError_1 = require("./users/UserProjectsNotFoundError"); Object.defineProperty(exports, "UserProjectsNotFoundError", { enumerable: true, get: function () { return UserProjectsNotFoundError_1.UserProjectsNotFoundError; } }); const LicenseNotFoundError_1 = require("./tags/LicenseNotFoundError"); Object.defineProperty(exports, "LicenseNotFoundError", { enumerable: true, get: function () { return LicenseNotFoundError_1.LicenseNotFoundError; } }); const VersionNotFoundError_1 = require("./versions/VersionNotFoundError"); Object.defineProperty(exports, "VersionNotFoundError", { enumerable: true, get: function () { return VersionNotFoundError_1.VersionNotFoundError; } });