UNPKG

@manuth/woltlab-compiler

Version:

A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components

26 lines (25 loc) 534 B
/** * Specifies a permission-requirement for viewing an option. */ export declare enum ViewPermission { /** * Indicates the owner of the user the option is assigned to. */ Owner = 1, /** * Indicates users with administrator-privileges. */ Admin = 2, /** * Indicates registers users. */ RegisteredUser = 4, /** * Indicates visitors which are not registered. */ Guest = 8, /** * Indicates that all visitors have view permissions. */ All = 15 }