UNPKG

role-acl

Version:

Role, Attribute and Condition based Access Control for Node.js

10 lines (9 loc) 254 B
import { IConditionFunction } from './IConditionFunction'; /** * Equals condition * * @author Dilip Kola <dilip@tensult.com> */ export declare class EqualsCondition implements IConditionFunction { evaluate(args?: any, context?: any): boolean; }