UNPKG

permissions.js

Version:

This module is a manager for permissions. With this module you can defined and host the permissions of user as a integer which makes it possible to limit the use of memory.

10 lines (9 loc) 211 B
interface IObject { [index: string]: any; } export declare class BasePermissions { permissions: Array<IObject>; constructor(permissions: Array<IObject>); get ALL(): number; } export {};