UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

18 lines (17 loc) 399 B
/** * Specifies a permission-requirement for editing an option. */ export declare enum EditPermission { /** * Indicates owners of the user the option is assigned to. */ Owner = 1, /** * Indicates users with administrator-privileges. */ Admin = 2, /** * Indicates owners during their registration. */ OwnerOnRegistration = 4 }