Skip to content

@loontail/minecraft-kit v0.8.14 / VerificationKind

Type alias: VerificationKind

ts
type VerificationKind: typeof VerificationKinds[keyof typeof VerificationKinds];

Verification kind literal.

Example

ts
import { VerificationKinds, type VerificationKind } from "@loontail/minecraft-kit";

const isLoader = (k: VerificationKind) =>
  k === VerificationKinds.FABRIC || k === VerificationKinds.FORGE;

Source

src/types/verify.ts:36

MIT License