UNPKG

bc-minecraft-bedrock-types

Version:

The typescript library that provides default types for minecraft bedrock

19 lines 434 B
import { Mode, ModeCollection } from './mode-collection'; /** */ export interface SlotTypeModeCollection extends ModeCollection { /** */ modes: SlotTypeMode[]; } /** */ export interface SlotTypeMode extends Mode { /** */ range?: { /** */ min: number; /** */ max: number; }; } /** */ export declare const SlotTypeModes: SlotTypeModeCollection; //# sourceMappingURL=slot-type.d.ts.map