UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

14 lines (13 loc) 290 B
export declare enum ServerPermissionLevel { none = 0, displayReadOnly = 1, fullReadOnly = 2, updateState = 3, admin = 4 } export interface IAuthenticationToken { time: number; code: string; permissionLevel: ServerPermissionLevel; fingerprint?: string; }