Skip to content

@loontail/minecraft-kit v0.8.14 / LaunchAspect

Type alias: LaunchAspect

ts
type LaunchAspect: {
  compose: Promise<LaunchComposition>;
  preflight: Promise<LaunchPreflightResult>;
  run: LaunchSession;
};

Shape of kit.launch.

Type declaration

MemberTypeDescription
composePromise<LaunchComposition>-
preflightPromise<LaunchPreflightResult>Cheap, network-free readiness gate: reports whether every launch-critical file (java executable, version JSON, client jar, classpath entries) is present on disk.
runLaunchSession-

Source

src/kit/launch-aspect.ts:26

MIT License