UNPKG

xlicore

Version:

Currently only used for my own launcher, proper docs will come later (hopefully).

13 lines (12 loc) 1.29 kB
import { DraslAuth } from './auth/drasl.js'; import { MrpackParseError } from './download/modpack/parseMrpack.js'; import { Launch } from './launch.js'; import type { LaunchOpts, GameLaunchArguments } from './types/Launch.ts'; import { launchCredentials } from './types/meta/auth/launchCredentials.js'; import type { DownloaderCallbackOnFinish, DownloaderCallbackOnProgress, DownloaderFile, DownloaderLastProgress } from './types/utils/Downloader.js'; import { genDirs } from './utils/general.js'; import type { Request as DraslAuthenticateRequest, Response as DraslAuthenticateResponse } from './types/meta/auth/drasl/authenticate.js'; import type { Request as DraslValidateRequest } from './types/meta/auth/drasl/validate.js'; import type { Request as DraslSignoutRequest } from './types/meta/auth/drasl/signout.js'; import type { Request as DraslRefreshRequest, Response as DraslRefreshResponse } from './types/meta/auth/drasl/refresh.js'; export { Launch, LaunchOpts, GameLaunchArguments, DownloaderCallbackOnFinish, DownloaderCallbackOnProgress, DownloaderFile, DownloaderLastProgress, DraslAuthenticateRequest, DraslValidateRequest, DraslSignoutRequest, DraslRefreshRequest, DraslAuthenticateResponse, DraslRefreshResponse, DraslAuth, launchCredentials, MrpackParseError, genDirs, };