UNPKG

123 BTypeScriptView Raw
1import { Action } from './Action';
2export interface RoleChecker {
3 check(action: Action): boolean | Promise<boolean>;
4}