Skip to content

@loontail/minecraft-kit / ArgumentEntry

Type Alias: ArgumentEntry

ts
type ArgumentEntry = 
  | string
  | {
  rules: readonly LibraryRule[];
  value: string | readonly string[];
};

Defined in: src/types/minecraft.ts:154

A single argument entry: bare string or rule-gated value.

MIT License