@manuth/woltlab-compiler
Version:
A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components
22 lines (21 loc) • 464 B
TypeScript
/**
* 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,
/**
* Indicates that all visitors have permissions.
*/
All = 3
}