UNPKG

role-acl

Version:

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

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