UNPKG

@kurbar/access-control

Version:

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

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