typerinth
Version:
A TypeScript library for interacting with the Modrinth API.
9 lines (8 loc) • 614 B
TypeScript
import { UnexpectedApiError } from './api/UnexpectedApiError';
import { ApiError } from './api/ApiError';
import { ProjectNotFoundError } from './projects/ProjectNotFoundError';
import { UserNotFoundError } from './users/UserNotFoundError';
import { UserProjectsNotFoundError } from './users/UserProjectsNotFoundError';
import { LicenseNotFoundError } from './tags/LicenseNotFoundError';
import { VersionNotFoundError } from './versions/VersionNotFoundError';
export { UnexpectedApiError, ApiError, ProjectNotFoundError, UserNotFoundError, UserProjectsNotFoundError, LicenseNotFoundError, VersionNotFoundError, };