Appearance
@loontail/minecraft-kit v0.8.14 / VerifyAspect
Type alias: VerifyAspect
ts
type VerifyAspect: {
fabric: {
run: Promise<VerificationResult>;
};
forge: {
run: Promise<VerificationResult>;
};
minecraft: {
run: Promise<VerificationResult>;
};
runtime: {
run: Promise<VerificationResult>;
};
targetReady: {
run: Promise<TargetReadinessResult>;
};
};Shape of kit.verify. The four per-aspect surfaces share the same (target, options) → Promise<VerificationResult> contract; targetReady aggregates them for launch gating.
Type declaration
| Member | Type |
|---|---|
fabric | { |
run: Promise<VerificationResult>; | |
| } | |
run | Promise<VerificationResult> |
forge | { |
run: Promise<VerificationResult>; | |
| } | |
run | Promise<VerificationResult> |
minecraft | { |
run: Promise<VerificationResult>; | |
| } | |
run | Promise<VerificationResult> |
runtime | { |
run: Promise<VerificationResult>; | |
| } | |
run | Promise<VerificationResult> |
targetReady | { |
run: Promise<TargetReadinessResult>; | |
| } | |
run | Promise<TargetReadinessResult> |