typerinth
Version:
A TypeScript library for interacting with the Modrinth API.
13 lines (12 loc) • 412 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDefaultOptions = getDefaultOptions;
const CacheOptions_1 = require("./CacheOptions");
function getDefaultOptions() {
return {
baseUrl: 'https://api.modrinth.com',
apiVersion: 'v2',
userAgent: 'typerinth (default user agent)',
cache: (0, CacheOptions_1.getDefaultCacheOptions)(),
};
}