kratos-core
Version:
kratos-core is an open-source, elegant and battery-included Minecraft Launcher API module written in TypeScript in order to be the based of KratosLauncher
28 lines (27 loc) • 617 B
TypeScript
import * as download from "./download";
import * as version from "./version";
import * as utils from "./utils";
import * as workspace from "./workspace";
/**
* Represents kratos core object
*/
export declare const kratos: {
/**
* Represents the download module
*
*/
download: typeof download;
/**
* Represents the version module
*/
version: typeof version;
/**
* Represents the utility module
*/
utils: typeof utils;
/**
* Represents the workspace module
*/
workspace: typeof workspace;
};
export { download, version, utils, workspace };